zdirnecamlcs96/laravel-cms

v1.0.0 2023-04-05 09:21 UTC

This package is auto-updated.

Last update: 2024-05-05 19:09:00 UTC


README

This package is a simple CMS with admin panel.

Get Started

  1. Run command composer require zdirnecamlcs96/laravel-cms to install the package

  2. Run command php artisan migrate to setup admin database structure.

  3. INclude Admin auth provider in auth.php.

'providers' => [
    // ...
        'admins' => [
            'driver' => 'eloquent',
            'model' => Local\CMS\Models\Admin::class,
        ],
    // ...
],
  1. Copy menu config from local/cms/config/adminlte.php to config/adminlte.php.

  2. Done.