PHP Laravel 5.7 - Create Admin Panel Example
Today's topic, how to create admin panel with role and permission in php laravel 5.7 application. In this tutorial i will give you some steps to create quickly admin panel from github using laravel 5.7. we can simply create free admin panel using vue, jwt, api, laravel 5.7.
It would be great if you found any good github package for admin panel using laravel. Admin panel will provide very basic requirement like back end theme integrated, user management, permission module, setting page, faq management, create simple pages and crud generator. It will help to make better progress with your project and give a basic environment.
In this tutorial, we will use viralsolani/laravel-adminpanel gihub open source package. they provide such a great module like Access Management, Module, pages, settings, blog management, faq management and vue js setup for frontend. So you have to just follow few step and you can get simple and nice backend admin panel. it is very easy to customize. i attach screenshot of admin so you can check it.
Preview:
Install Admin Panel:
clone admin panel from github using bellow command:
git clone https://github.com/viralsolani/laravel-adminpanel.git
Copy env file and make your local configuration:
cd laravel-adminpanel
cp .env.example .env
Composer install by following command:
composer install
Make NPM configuration for sass and vue js:
npm install
npm run development
Link to storage folder with public:
php artisan storage:link
Generate Laravel key and JWT key:
php artisan key:generate
php artisan jwt:secret
Publish admin panel migrations, model etc:
php artisan vendor:publish --tag=lfm_public
Run migration and seeder for dummy records:
php artisan migrate
php artisan db:seed
Now you can run your project with server command:
php artisan serve
Then you can use following details for login:
Email: admin@admin.com
Password: 1234
Email: executive@executive.com
Password: 1234
Email: user@user.com
Password: 1234
You can get more information from here: laravel-adminpanel.
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Integrate Stripe Payment Gateway in Laravel?
- How to use Google ReCaptcha in Laravel?
- Laravel 5.7 - Generate PDF from HTML Example
- Laravel 5.7 - Create REST API with authentication using Passport Tutorial
- How to send mail using queue in Laravel 5.7?
- Laravel 5.7 JQuery Form Validation Example
- Laravel 5.7 Autocomplete Search from Database using Typeahead JS
- Laravel 5.7 Ajax Pagination Example
- Laravel 5.7 CRUD (Create Read Update Delete) Tutorial Example