Installation
This package requires PHP 7+ and Laravel 5.5
First, install laravel, and make sure that the database connection settings are correct.
Then install require this package with command:
composer require ezadev/adminPublish assets and config with command:
php artisan vendor:publish --provider="Ezadev\Admin\AdminServiceProvider"After runnung previous command you can find config file in config/admin.php, in this file you can change default install directory (/app/Admin), db connection or table names.
At last run following command to finish install:
php artisan admin:installTo check that all is working, run php artisan serve and open http://localhost/admin/ in browser, use username admin and password admin to login.
Generated files
After the installation is complete, the following files are generated in the project directory:
Configuration file
After the installation is complete, all configurations are in the config/admin.php file.
Admin files
After install,you can find directoryapp/Admin,and then most of our develop work is under this directory.
app/Admin
├── Controllers
│   ├── ExampleController.php
│   └── HomeController.php
├── bootstrap.php
└── routes.phpapp/Admin/routes.php is used to define routes.
app/Admin/bootstrap.php is bootstrapper for ezadev-admin, for usage examples see comments inside it.
The app/Admin/Controllers directory is used to store all the controllers. The HomeController.php file under this directory is used to handle home request of admin. The ExampleController.php file is a controller example.
Static assets
The front-end static files are in the /public/packages/admin directory.
Last updated