how to make default route login in laravel 6

Viewed 19

when I want to enter the address http://localhost/agendab/public/ it gives me 404 Not Found, because no have a route, and for me I want to be logged in on the 1st page to navigate. web.php

Auth::routes();
Route::resource('events', 'EventController')->middleware('auth');
0 Answers
Related