Releases: alexusmai/laravel-file-manager
Releases · alexusmai/laravel-file-manager
Laravel 11 support
Deleted - intervention/imagecache (Abandoned)
delete from config - config/file-manager.php
/**
* Image cache ( Intervention Image Cache )
*
* set null, 0 - if you don't need cache (default)
* if you want use cache - set the number of minutes for which the value should be cached
*/
'cache' => null,
Updated - Intervention/image to v3 ( used - https://github.com/Intervention/image-laravel)
Laravel 10 support
v3.0.5 Laravel 10
v3.0.1
v2.5.0
You can change Route prefix (default - 'file-manager')
/**
* LFM Route prefix
* !!! WARNING - if you change it, you should compile frontend with new prefix(baseUrl) !!!
*/
'routePrefix' => 'file-manager',
Open PDF files in a new tab (test) - use 'double-click'
v2.4.10
v2.4.8
v2.4.7
- Show / Hide system files and folders - in a config file you can set default value, but you can change this settings from FM manualy (added new button), without saving
config/file-manager.php
'hiddenFiles' => true,
-
Added edditing json and log files in text editor. (Be careful with json! invalid json will then be difficult to fix )
-
Now you don't need to install helper package for laravel 6 - laravel/helpers
Upgrading
You need to update you config file manualy (add new setting) or you can make --force updating, but make backup your settings first
// config
php artisan vendor:publish --tag=fm-config --force
// js, css
php artisan vendor:publish --tag=fm-assets --force
If you are implementing ConfigRepository - add new method in your class
/**
* Show / Hide system files and folders
*
* @return bool
*/
public function getHiddenFiles(): bool
{
return config('file-manager.hiddenFiles');
}