ecommerce-laravel icon indicating copy to clipboard operation
ecommerce-laravel copied to clipboard

Web Route typo

Open LeftPinkie opened this issue 4 months ago • 0 comments

There is a typo in your web route ./routes/web.php:

Route::view('/account', 'about')->middleware('auth')->name('about');

it should be:

Route::view('/account', 'account')->middleware('auth')->name('account');

LeftPinkie avatar Oct 10 '24 17:10 LeftPinkie