Install Laravel
laravel new seahorseLaravel Auth
php artisan make:auth Migrations
php artisan migrate Install Seahorse
composer require sunnytreesoftware/seahorsePublish Assets
php artisan vendor:publish --provider="Sunnytree\Seahorse\SeahorseServiceProvider"Run Migrations Again
php artisan migrateOpen the file app/Providers/RouteServiceProvider.php and find the lines:
protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
}Change this line:
->group(base_path('routes/web.php'));to:
->group(base_path('routes/seahorse.php'));