Skip to content

ppm1111/laravel-admin-panel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Admin Panel

Laravel Admin Panel ("LAP") is a drop-in admin panel package for Laravel which promotes rapid scaffolding & development.

Features:

  • CRUD generator
  • Demo mode
  • Roles & permissions
  • Laravel auth integration
  • User timezones (automatically set on login)
  • Dynamic model fillables (using database table columns)
  • Activity logs
  • Settings (stored in database)
  • Fully responsive (looks great on desktop & mobile)
  • AJAX form validation
  • Documentation CRUD
  • & much more

Packages used:

Assets used:

Installation

Require via composer:

composer require ppm1111/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

Logging In

Visit (APP_URL)/admin to access the admin panel.

The default admin login is:

Email Address: admin@example.com
Password: admin123

About

Fork From https://github.com/kjjdion/laravel-admin-panel Laravel Admin Panel ("LAP") is a drop-in admin panel package for Laravel 6 which promotes rapid scaffolding & development.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 64.1%
  • Blade 27.7%
  • JavaScript 5.1%
  • CSS 3.1%