-
Install package - using composer
composer require alexusmai/laravel-file-manager
-
If you use Laravel 5.4, then add service provider to config/app.php (for the Laravel 5.5 and higher skip this step):
Alexusmai\LaravelFileManager\FileManagerServiceProvider::class,
-
Publish configuration file
php artisan vendor:publish --tag=fm-config
-
You can install npm package directly and use it in your vue application - more information about it - vue-laravel-file-manager
OR
Publish compiled and minimized js and css files
php artisan vendor:publish --tag=fm-assets
Open the view file where you want to place the application block, and add:
-
add a csrf token to head block if you did not do it before
<!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}">
-
the frontend package uses Bootstrap 4 and Font Awesome 5 styles, if you already use it, then you do not need to connect any styles. Otherwise add -
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
-
add file manager styles
<link rel="stylesheet" href="{{ asset('vendor/file-manager/css/file-manager.css') }}">
-
add file manager js
<script src="{{ asset('vendor/file-manager/js/file-manager.js') }}"></script>
-
add div for application (set application height!)
<div style="height: 600px;"> <div id="fm"></div> </div>
-