laravel-frontend-presets / tall

A TALL (Tailwind CSS, Alpine.js, Laravel and Livewire) Preset for Laravel
MIT License
2.46k stars 207 forks source link

Route [home] not defined. #49

Closed rabol closed 4 years ago

rabol commented 4 years ago

Hi

Just did a fresh laravel installation and then followed the installation of this preset, and when I try access the site I got this:

Route [home] not defined. (View: /home/vagrant/code/tall/resources/views/welcome.blade.php)

Did I miss something?

SilverPaladin commented 4 years ago

The route is defined in web.php. Do you see the route there on line 16? Route::view('/', 'welcome')->name('home');

imliam commented 4 years ago

The named route was only added to the auth scaffolding, not the default one. I've just added it to the default scaffolding in this commit 93ab258

Thanks for reporting the issue!