Darperso CMS
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
Type:package
Requires
This package is auto-updated.
Last update: 2025-08-05 17:23:45 UTC
README
- Create the database and update your .env file
-
Add the below to config/auth.php:
'guards' => [ 'admin' => [ 'driver' => 'session', 'provider' => 'admins', ], ], 'providers' => [ 'admins' => [ 'driver' => 'eloquent', 'model' => Darpersodigital\Cms\Models\Admin::class, ], ],
-
Change in filesystem disks
'local' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, ],
-
Run:
composer require darpersodigital/cms
Publishables:
-
CMS config:
php artisan vendor:publish --tag=darperso --force