helori/laravel-backend

User interface to manage a website's content

v1.2.1 2018-06-13 13:38 UTC

This package is auto-updated.

Last update: 2024-04-09 01:13:33 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