Download the PHP package ppm1111/laravel-admin-panel without Composer
On this page you can find all versions of the php package ppm1111/laravel-admin-panel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ppm1111/laravel-admin-panel
More information about ppm1111/laravel-admin-panel
Files in ppm1111/laravel-admin-panel
Download ppm1111/laravel-admin-panel
More information about ppm1111/laravel-admin-panel
Files in ppm1111/laravel-admin-panel
Vendor ppm1111
Package laravel-admin-panel
Short Description An admin panel package for Laravel.
License MIT
Homepage https://github.com/ppm1111/laravel-admin-panel
Package laravel-admin-panel
Short Description An admin panel package for Laravel.
License MIT
Homepage https://github.com/ppm1111/laravel-admin-panel
Please rate this library. Is it a good library?
Informations about the package laravel-admin-panel
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:
- Custom admin panel layout (inspired by Nova)
- Bootstrap 4
- Datatables (with some tweaks for a better UX)
- FontAwesome 5
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: [email protected]
Password: admin123
All versions of laravel-admin-panel with dependencies
PHP Build Version
Package Version
Requires
erusev/parsedown Version
^2.0
kalnoy/nestedset Version ^6.0
laravel/framework Version ^10.10
yajra/laravel-datatables-html Version ^10.6
yajra/laravel-datatables-oracle Version ^10.4
laravel/ui Version ^4.2
laravel/helpers Version ^1.6
kalnoy/nestedset Version ^6.0
laravel/framework Version ^10.10
yajra/laravel-datatables-html Version ^10.6
yajra/laravel-datatables-oracle Version ^10.4
laravel/ui Version ^4.2
laravel/helpers Version ^1.6
The package ppm1111/laravel-admin-panel contains the following files
Loading the files please wait ....