Looking to hire Laravel developers? Try LaraJobs

laravel-backend maintained by helori

Description
User interface to manage a website's content
Author
Last update
2025/05/26 12:40 (dev-master)
License
Links
Downloads
180
Tags

Comments
comments powered by Disqus

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