liberu-ecommerce / ecommerce-laravel

Ecommerce system written in Laravel 11 / PHP 8.3 using Filament 3.2 and Livewire 3.5
https://www.facebook.com/liberusoftware
96 stars 31 forks source link

Web Route typo #380

Closed LeftPinkie closed 1 month ago

LeftPinkie commented 1 month ago

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');
curtisdelicata commented 1 month ago

Thank you. Fixing now.