Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created November 19, 2021 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/3499ec204fe28f10a97155f3056a584b to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/3499ec204fe28f10a97155f3056a584b to your computer and use it in GitHub Desktop.
<?php
use App\Models\User;
use App\Notifications\HelloUser;
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
User::get()->each->notify(new HelloUser);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment