当前位置: 首页 > 软件库 > 开发工具 > PHP开发工具 >

SleepingOwlAdmin

授权协议 MIT License
开发语言 PHP
所属分类 开发工具、 PHP开发工具
软件类型 开源软件
地区 不详
投 递 者 詹弘毅
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

bg

Laravel Admin Panel SleepingOwl

StyleCILaravel SupportPHP Support

Official SiteDemo SiteTelegram ChatLatest Stable VersionTotal DownloadsLicense

SleepingOwl Admin is an administrative interface builder for Laravel. Completely free

Support Laravel > 5.5 - 5.8 (PHP < 7.1.3), Laravel 6.* (PHP > 7.2), Laravel 7.* (PHP > 7.2.5) and Laravel 8.* (PHP > 7.3)

Lumen is NOT supported(((

Documentation new ver.8

Powered by Laravel 5.5 - 8+. (latest tested version 8.44.0)

Install ver 8.* (last Released)

Install SleepingOwl Admin

composer require laravelrus/sleepingowl:8.*

Install ver 7.*

  1. Install SleepingOwl Admin

composer require laravelrus/sleepingowl:7.*

or

If you upgrade the old version change in composer.json

"laravelrus/sleepingowl": "^7.*"

after run composer update laravelrus/sleepingowl

and run php artisan sleepingowl:update for update assets

  1. Run this command in the terminal (if you want to know more about what exactly this command does, see install command documentation):
php artisan sleepingowl:install

Authentication

  1. By default, admin module uses Laravel authentication.

If you want to use auth, you can run artisan command php artisan make:auth (https://laravel.com/docs/authentication)and append middleware auth to config/sleeping_owl.php

...
'middleware' => ['web', 'auth']
...
  1. Setting up middleware

By default auth middleware use default guard, selected in config/auth.php

'defaults' => [
  'guard' => 'web', <- default
  ...
],
  1. If you are using some package for ACL like (Laratrust, Zizaco Entrust, etc...)
'middleware' => ['web', 'role:admin'],

or

'middleware' => ['web', 'permission:admin'],

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.

相关阅读

相关文章

相关问答

相关文档