helori / laravel-backend
User interface to manage a website's content
Installs: 176
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Vue
Requires
- php: >=7.0.0
- helori/laravel-admin: dev-master
This package is auto-updated.
Last update: 2024-11-09 02:18:30 UTC
README
This package gives you an admin panel to manage your website's content. It uses helori/laravel-admin for authentication. You need to follow the installation steps of this package before using your backend.
Installation and setup
On a fresh Laravel (>= v5.4) installation, install the package by running:
composer require helori/laravel-backend
Follow helori/laravel-admin installation steps
Publish the laravel-backend default assets:
php artisan vendor:publish --tag=laravel-backend-assets
Install the package's dependencies:
npm install jquery@3.* bootstrap@4.* vue-crud@2.* --save-dev
Edit your laravel mix config file :
// webpack.mix.js mix.sass( "./resources/assets/sass/backend.scss", "./public/css/backend.css" ).js( "./resources/assets/js/backend.js", "./public/js/backend.js", "." );
Compile your assets :
npm run dev
Your backend should be available at:
http://your-domain.test/admin