Laravel routing issue

Hi I am laravel biginner i have issue in routing.
i have create action pages
e.g: about.blade.php
and i have put the link on nav item About and also set the
Route::get(‘about’, function () {
return view(‘actions.about’);
})->name(‘about’);

but when i click on About in menu the link
http://localhost/testlaravel/public/about
and its says
The requested URL /testlaravel/public/about was not found on this server.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.