mrubinitmegastarcom/autoadminlaravel

Administrative interface builder for Laravel.

5.8.6.2 2020-09-07 06:58 UTC

This package is auto-updated.

Last update: 2024-05-07 15:11:13 UTC


README

bg

Laravel Admin Panel

Build Status Laravel Support PHP Support Official Site Demo Site Latest Stable Version License

SleepingOwl Admin is an administrative interface builder for Laravel.

Documentation

Install dev branch

  1. Run this command in the terminal: composer require mrubinitmegastarcom/autoadminlaravel
  2. Run command in the terminal add config files: php artisan sleepingowl:install
  3. Run command in the terminal for update assets: php artisan sleepingowl:update

Copyright and License

Admin was written by Sleeping Owl for the Laravel framework and is released under the MIT License. See the LICENSE file for details.

Config example /** * @return array */ public function getProperty():array { return [ 'crud'=> [ 'modelTitle' => 'Круиз', 'menuGroup' => 'Справочники', 'menuIcon' => 'fa fa-dashboard', 'gridFields' => $this->getDocAttributesType(), 'editFields' => $this->getDocAttributesType(), 'permission' => [], ], 'relations'=> function($a){ return [ 'motorship'=>['class'=>Motorship::class, 'relationOne'=>true] ]; } ]; }