Skip to content

Instantly share code, notes, and snippets.

@nukedbit
Created May 18, 2021 10:28
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 nukedbit/a8c798f87c35e9bcf572b9a5231a4634 to your computer and use it in GitHub Desktop.
Save nukedbit/a8c798f87c35e9bcf572b9a5231a4634 to your computer and use it in GitHub Desktop.
wb.php
Route::middleware(['auth:sanctum', 'verified'])->group(function (){
Route::get('/dashboard', function () {
return view('dashboard');
})->name('dashboard');
Route::get('/users', \App\Http\Livewire\UsersListComponent::class)->name('users');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment