Looking to hire Laravel developers? Try LaraJobs

autoadminlaravel maintained by mrubinitmegastarcom

Description
Administrative interface builder for Laravel.
Author
Last update
2020/09/07 08:58 (dev-development)
License
Downloads
430

Comments
comments powered by Disqus

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] ]; } ]; }