Removed route examples.

This commit is contained in:
Leonid Nikitin 2023-03-05 20:26:41 +06:00
parent 795945326e
commit 587679a33c
Signed by: kor-elf
GPG Key ID: 7DE8F80C5CEC2C0D
3 changed files with 0 additions and 12 deletions

View File

@ -12,7 +12,3 @@ use Illuminate\Support\Facades\Broadcast;
| used to check if an authenticated user can listen to the channel.
|
*/
Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});

View File

@ -13,7 +13,3 @@ use Illuminate\Support\Facades\Artisan;
| simple approach to interacting with each command's IO methods.
|
*/
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');

View File

@ -12,7 +12,3 @@ use Illuminate\Support\Facades\Route;
| be assigned to the "web" middleware group. Make something great!
|
*/
Route::get('/', function () {
return view('welcome');
});