This is the documentation for
v8 but the latest version is
v10
.
You can switch versions in the menu on the left/at the top.
Check your current version with the following command:
composer show spatie/laravel-medialibrary
The Spatie\MediaLibrary\MediaCollections\Filesystem
class contains the behavior for actions like adding files, renaming files and deleting files. It applies these actions to the disks (local, S3, etc) that you configured.
If you want to override the default behavior you can create your own implementation by extending Spatie\MediaLibrary\MediaCollections\Filesystem
. You then bind your own class to the service container in the AppServiceProvider
:
use App\CustomFilesystem;
use Spatie\MediaLibrary\MediaCollections\Filesystem;
class AppServiceProvider extends ServiceProvider
{
...
public function register()
{
$this->app->bind(Filesystem::class, CustomFilesystem::class);
}
}
Generally speaking you do not want to mess with this class, so only override it if you know what you're doing.