You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 22, 2025. It is now read-only.
incase you want to hide some files from the manager.
This is not the same as the global file ignore pattern in the config, rather it's made so you can dynamically hide files from the end user.
so same as Folder Restriction, you will pass a param with the extensions you want to hide
@include('MediaManager::_manager', ['hideExt'=>['svg']])
// or with path restriction too
@include('MediaManager::_manager', ['path'=>'users', 'hideExt'=>['svg']])
\\ Note that the passed param have to be an array of items not a string.