inweb / admin
Admin Panel for Laravel Framework
9.0.3
2022-07-24 20:45 UTC
Requires
- php: ^7.1|^8.0
- cakephp/chronos: ^1.0|^2.0
- laravel/scout: >=8
- spatie/laravel-permission: ^5.4
- dev-master
- 9.0.3
- 9.0.0
- 8.0.10
- 8.0.9
- 8.0.8
- 8.0.7
- 8.0.6
- 8.0.5
- 8.0.4
- 8.0.3
- 8.0.2
- 8.0.1
- v8.0
- 1.0.1
- 1.0.0
- dev-dependabot/npm_and_yarn/postcss-and-laravel-mix-and-tailwindcss-8.4.31
- dev-dependabot/npm_and_yarn/jquery-3.7.0
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/json5-and-laravel-mix-and-sass-loader-2.2.3
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/qs-6.5.3
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/moment-timezone-0.5.35
- dev-dependabot/npm_and_yarn/moment-2.29.4
- dev-main
- dev-update
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/npm-6.14.16
- dev-dependabot/npm_and_yarn/axios-0.21.2
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/color-string-1.9.0
- dev-dependabot/npm_and_yarn/browserslist-4.19.3
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/bin-links-1.1.8
- dev-dependabot/npm_and_yarn/dot-prop-4.2.1
- dev-dependabot/npm_and_yarn/npm-user-validate-1.0.1
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/https-proxy-agent-2.2.4
- dev-dependabot/npm_and_yarn/acorn-6.4.1
- dev-order_page
- dev-dependabot/npm_and_yarn/mixin-deep-1.3.2
This package is auto-updated.
Last update: 2025-03-31 20:42:48 UTC
README
Admin Panel for Laravel Framework
Features
- CRUD
- Images management
Requirements
- Laravel >=5.6
Installation
- Install package via composer require
or add to your composer.json to require section and update your dependenciescomposer require inweb/admin
"inweb/admin": "dev-master"
- Run migrations
php artisan migrate
- Run installation command
php artisan admin:install
Manual installation
Run seeder to create admin user with default credentials
php artisan admin:seed
Add guard in config/auth.php
'guards' => [ ... 'admin' => [ 'driver' => 'session', 'provider' => 'admin', ], ],
Add provider in config/auth.php
'providers' => [ ... 'admin' => [ 'driver' => 'eloquent', 'model' => InWeb\Admin\App\Models\AdminUser::class, ], ],
Publish assets
php artisan admin:publish
You are ready to go!