Require via composer:
composer require kjjdion/laravel-admin-panel
Publish install files:
php artisan vendor:publish --provider="Kjjdion\LaravelAdminPanel\LapServiceProvider" --tag="install"
This will create the following files:
config/lap.php
public/lap/*.*
resources/views/vendor/lap/*.*
app/Http/Controllers/Admin/BackendController.php
Add the AdminUser, DynamicFillable, and UserTimezone traits to your User model:
use Kjjdion\LaravelAdminPanel\Traits\AdminUser;
use Kjjdion\LaravelAdminPanel\Traits\DynamicFillable;
use Kjjdion\LaravelAdminPanel\Traits\UserTimezone;
class User extends Authenticatable
{
use Notifiable, AdminUser, DynamicFillable, UserTimezone;
Run the migrations:
php artisan migrate
Visit (APP_URL)/admin to access the admin panel.
The default admin login is:
Email Address: admin@example.com
Password: admin123