laravel-6 support

This commit is contained in:
RafficMohammed
2023-01-08 01:17:22 +05:30
parent 1a5c16ae4b
commit 774eed8b0e
4962 changed files with 279380 additions and 297961 deletions

View File

@@ -6,16 +6,28 @@
* Laravel 5
* requires [intervention/image](https://github.com/Intervention/image) (to make thumbs, crop and resize images).
## Installation
1. Install package
## TL;DR
1. Run these lines
```bash
composer require unisharp/laravel-filemanager:~1.8
composer require unisharp/laravel-filemanager
php artisan vendor:publish --tag=lfm_config
php artisan vendor:publish --tag=lfm_public
php artisan storage:link
```
1. Edit `config/app.php` :
1. Edit `APP_URL` in `.env`.
\* *For Laravel 5.5 and up, skip to step 3. All service providers and facades are automatically discovered.*
## Full Installation Guide
1. Install package
```bash
composer require unisharp/laravel-filemanager
```
1. (optional) Edit `config/app.php` :
\* *For Laravel 5.5 and up, skip to step 3. All service providers and facades are automatically discovered.*
Add service providers
@@ -39,16 +51,46 @@
php artisan vendor:publish --tag=lfm_config
php artisan vendor:publish --tag=lfm_public
```
1. Run commands to clear cache :
1. (optional) Run commands to clear cache :
```bash
php artisan route:clear
php artisan config:clear
```
1. Ensure that the files & images directories (in `config/lfm.php`) are writable by your web server (run commands like `chown` or `chmod`).
1. Create symbolic link :
```bash
php artisan storage:link
```
1. Edit `APP_URL` in `.env`.
1. Edit `routes/web.php` :
Create route group to wrap package routes.
```php
Route::group(['prefix' => 'laravel-filemanager', 'middleware' => ['web', 'auth']], function () {
\UniSharp\LaravelFilemanager\Lfm::routes();
});
```
Make sure `auth` middleware is present to :
1. prevent unauthorized uploads
1. work properly with multi-user mode
1. make sure database exists
1. login and visit `/laravel-filemanager/demo`
## Installing alpha version
* Run `composer require unisharp/laravel-filemanager:dev-master` to get the latest developer version.
## What's next
1. Check the [integration document](http://unisharp.github.io/laravel-filemanager/integration) to see how to apply this package.