Seahorse is a Content Management System built with Laravel

0.0.4 2019-05-15 20:19 UTC

This package is auto-updated.

Last update: 2024-11-16 09:34:33 UTC


README

Seahorse is a Content Management System built with Laravel


Installation

Install Laravel

laravel new seahorse

Laravel Auth

php artisan make:auth  

Migrations

php artisan migrate  

Install Seahorse

composer require sunnytreesoftware/seahorse

Publish Assets

php artisan vendor:publish --provider="Sunnytree\Seahorse\SeahorseServiceProvider"

Run Migrations Again

php artisan migrate

Open 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'));