PHP code example of devixar / sleepingowl-file-manager
1. Go to this page and download the library: Download devixar/sleepingowl-file-manager library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
devixar / sleepingowl-file-manager example snippets
php
/*
* Sleepingowl File Manager
*/
Devixar\SleepingowlFileManager\SleepingowlFileManagerServiceProvider::class,
php
// app/config/filesystems.php
'laradrop' => [
'driver' => 'local',
'root' => public_path('/images/uploads'), // path for save files
],
php
// app/config/laradrop.php
'disk_public_url' => env('LARADROP_DISK_PUBLIC_URL', '/images/uploads/'),