Skip to content

milo-sedarat/laravel-vue-admin-panel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e9a05f0 · Feb 12, 2025

History

1 Commit
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025
Feb 12, 2025

Repository files navigation

Laravel Vue Admin Panel

A Single page Vue admin panel for Laravel projects.

Total Downloads Latest Stable Version License

Laravel VUE admin panel preview

Built with

Installation

With Docker Desktop

  • To get started, you need to install Docker Desktop.
  • You may run the following command in your terminal
  • Windows open WSL2 Linux terminal. Docker Desktop WSL 2 backend
  • docker run --rm -v "$(pwd)":/opt -w /opt laravelsail/php83-composer:latest bash -c "composer create-project balajidharma/laravel-vue-admin-panel admin-app && cd admin-app && php artisan sail:install --with=mysql,redis,meilisearch,mailpit,selenium"
  • cd admin-app
  • ./vendor/bin/sail pull mysql redis meilisearch mailpit selenium
  • ./vendor/bin/sail build
  • ./vendor/bin/sail up
  • ./vendor/bin/sail npm install
  • ./vendor/bin/sail npm run dev
  • ./vendor/bin/sail artisan vendor:publish --tag=admin-core
  • ./vendor/bin/sail artisan migrate --seed --seeder=AdminCoreSeeder
  • ./vendor/bin/sail artisan storage:link
  • Now open http://localhost/

Without Docker Desktop

  • To get started, you need to install PHP Composer.
  • composer create-project balajidharma/laravel-vue-admin-panel admin-app
  • cd admin-app
  • Create a new MYSQL database and update database details in .env file
  • php artisan vendor:publish --tag=admin-core
  • php artisan migrate --seed --seeder=AdminCoreSeeder
  • php artisan storage:link
  • npm install
  • npm run dev
  • php artisan serve
  • Now open http://localhost:8000/
Super Admin Login

Admin Configuration:

To change the Admin Prefix, change prefix on config/admin.php or add the ADMIN_PREFIX on env

'prefix' => env('ADMIN_PREFIX', 'admin'),

Also Try

Update guide

Encountering errors post composer update? Reset the database and re-publish vendor assets to resolve issues.

php artisan vendor:publish --tag=admin-core  --force

php artisan migrate --seed --seeder=AdminCoreSeeder

Screenshots











License

The Laravel framework is open-sourced software licensed under the MIT license.