laravel-backend maintained by helori
laravel-admin
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