for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Services\Medialibrary;
use Spatie\MediaLibrary\UrlGenerator\LocalUrlGenerator;
class MediaLibraryUrlGenerator extends LocalUrlGenerator
{
public function getUrl(): string
return '/media/'.$this->getPathRelativeToRoot();
}