for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Larrock\Core\Helpers;
use Spatie\MediaLibrary\Models\Media;
use Spatie\MediaLibrary\PathGenerator\PathGenerator;
/**
* Изменение файловой структуры для загруженный файлов: ИмяМодели/исходный файл, ИмяМодели/ИмяФайла/пресеты
* Class CustomPathGenerator
*
* @package App\Helpers
*/
class CustomPathGenerator implements PathGenerator
{
/*
* Get the path for the given media, relative to the root storage path.
public function getPath(Media $media): string
return $this->getBasePath($media).'/';
}
* Get the path for conversions of the given media, relative to the root storage path.
public function getPathForConversions(Media $media): string
return $this->getBasePath($media).'/conversions/';
* Get the path for responsive images of the given media, relative to the root storage path.
public function getPathForResponsiveImages(Media $media): string
return $this->getBasePath($media).'/responsive-images/';
* Get a unique base path for the given media.
protected function getBasePath(Media $media): string
return class_basename($media->model_type) .'/'. $media->name;