https://github.com/hexters/ladmin-public-storage-plugin
https://github.com/hexters/ladmin-public-storage-plugin
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hexters/ladmin-public-storage-plugin
- Owner: hexters
- License: mit
- Created: 2020-11-29T04:26:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-02T23:49:29.000Z (about 4 years ago)
- Last Synced: 2024-07-29T13:12:40.172Z (almost 2 years ago)
- Language: PHP
- Size: 142 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Ladmin Public Storage Plugin
[](https://packagist.org/packages/hexters/ladmin-public-storage-plugin)
[](https://packagist.org/packages/hexters/ladmin-public-storage-plugin)
[](https://packagist.org/packages/hexters/ladmin-public-storage-plugin)
This is a plugin for the [hexters\ladmin](https://github.com/hexters/ladmin/blob/v1.8.3/readme.md) package

### Installation
You can install this package via composer:
```bash
$ composer require hexters/ladmin-public-storage-plugin
```
Add this route to Ladmin route
```php
. . .
use Hexters\Ladmin\Routes\Ladmin;
use Hexters\Ladmin\Plugin\PublicStorage\LadminPublicStorage;
. . .
Ladmin::route(function() {
. . .
LadminPublicStorage::route();
. . .
});
```
Add this menu to `app/menus/sidebar.php`
```php