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-04-16 08:15:46 UTC


README

seahorse.svg

68747470733a2f2f7472617669732d63692e636f6d2f73756e6e7974726565736f6674776172652f73656172686f7273652e7376673f6272616e63683d6d6173746572 68747470733a2f2f706f7365722e707567782e6f72672f73756e6e7974726565736f6674776172652f736561686f7273652f642f746f74616c2e737667 68747470733a2f2f706f7365722e707567782e6f72672f73756e6e7974726565736f6674776172652f736561686f7273652f762f737461626c65 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d79656c6c6f772e737667

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