hexters/ladmin-storage

Package for view storage in laravel

1.0.0 2022-04-11 10:52 UTC

This package is auto-updated.

Last update: 2024-04-11 22:53:57 UTC


README

View complete documentation for Ladmin Package

Installation

Add the repository by running the command below.

$ composer require hexters/ladmin-storage

Publish the module by running the command below.

$ php artisan vendor:publish --tag=ladmin-storage-module --force

Register the storage menu on the kernel menu, open the app/Menu/Sidebar.php file, see the example below.

. . .

use Modules\Ladmin\Menus\System;
use Modules\Storage\Menus\StorageMenu;

. . .

return [

    StorageMenu::class,

    Account::class,

. . .

And assign permissions like the example below. in menu http://localhost:8000/administrator/role

Config

Open the file Modules/Storage/config/module.php, to change the root folder of the main Storage Module

Ladmin Storage Pro