Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
spatie
/
laravel-medialibrary
/
src
/
MediaCollections
/
Exceptions
:
MediaCannotBeDeleted.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\MediaLibrary\MediaCollections\Exceptions; use Exception; use Illuminate\Database\Eloquent\Model; class MediaCannotBeDeleted extends Exception { public static function doesNotBelongToModel($mediaId, Model $model): self { $modelClass = $model::class; return new static("Media with id `{$mediaId}` cannot be deleted because it does not exist or does not belong to model {$modelClass} with id {$model->getKey()}"); } }