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
/
Support
/
FileNamer
:
DefaultFileNamer.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\MediaLibrary\Support\FileNamer; use Spatie\MediaLibrary\Conversions\Conversion; class DefaultFileNamer extends FileNamer { public function conversionFileName(string $fileName, Conversion $conversion): string { $strippedFileName = pathinfo($fileName, PATHINFO_FILENAME); return "{$strippedFileName}-{$conversion->getName()}"; } public function responsiveFileName(string $fileName): string { return pathinfo($fileName, PATHINFO_FILENAME); } }