PHP code example of foostart / package-filemanager
1. Go to this page and download the library: Download foostart/package-filemanager 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/ */
foostart / package-filemanager example snippets
Route::group(['middleware' => 'auth'], function () {
Route::get('/package-filemanager', '\Foostart\Filemanager\controllers\LfmController@show');
Route::post('/package-filemanager/upload', '\Foostart\Filemanager\controllers\UploadController@upload');
// list all lfm routes here...
});