Install Laravel Admin Panel | Admin Dashboard in Laravel | Admin Panel Laravel | Laravel Tutorial
dbestech dbestech
128K subscribers
55,865 views
525

 Published On Premiered Jun 20, 2021

This is laravel admin panel tutorial, you will learn how to install laravel admin panel and create laravel admin panel dashboard. Laravel is the most popular backend framework for web development.
We used laravel 8 and laravel-admin package to build a laravel admin panel dashboard in 25 minutes.

Check out the link for common error solutions in laravel admin panel
https://www.dbestech.com/tutorials/la...

check out the links for install larave-admin package
https://github.com/z-song/laravel-admin

For flutter ios development if you need to buy apple computer check out the link below
https://amzn.to/3nrE6Ii

Run the commands from the below link to solve permission problem
https://www.dbestech.com/tutorials/st...

Follow the commands to create models and controllers in laravel
https://laravel-admin.org/docs/en/ins...

The above resource should help you to how to make admin panel in laravel

You must not forget to run the below command after laravel installation

First, install laravel, and make sure that the database connection settings are correct.

composer require encore/laravel-admin:1.*
Then run these commands to publish assets and config:

php artisan vendor:publish --provider="Encore\Admin\AdminServiceProvider"
After run command you can find config file in config/admin.php, in this file you can change the install directory,db connection or table names.

At last run following command to finish install.

php artisan admin:install
Open http://localhost/admin/ in browser,use username admin and password admin to login.

Through out this tutorial you learn how to create models and controllers and database resources. To create models simple run
php artisan make:model "Modelname" -m

To create controllers for the backend panel
php artisan make:controller "Controllername" --models='App\Models\ModelName'

show more

Share/Embed