I try to display a view but I get a 404 not found error, but my code seems correct. I have version 8.67 of laravel
this is the route created
Route::get('/talk',[TalkController::class,'index'])->name('talk.index');
the controller
class TalkController extends Controller { public function index() { return view('talk'); } }
my view is in
resources/views/talk.blade.php
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community