UniSharp /
laravel-uploadable
| 1 | <?php |
||
| 2 | |||
| 3 | namespace UniSharp\Uploadable; |
||
| 4 | |||
| 5 | use Illuminate\Support\Facades\URL; |
||
| 6 | |||
| 7 | class Image extends File |
||
| 8 | { |
||
| 9 | protected $table = 'files'; |
||
| 10 | |||
| 11 | protected $appends = ['thumb']; |
||
| 12 | |||
| 13 | public function getThumbAttribute(): array |
||
| 14 | { |
||
| 15 | 2 | return collect(['s', 'm', 'l'])->flip()->map(function ($_, $size) { |
|
| 16 | 2 | return URL::to(preg_replace('/^(images\/)/', "\$1{$size}/", $this->attributes['path'])); |
|
|
0 ignored issues
–
show
|
|||
| 17 | 2 | })->toArray(); |
|
| 18 | } |
||
| 19 | } |
||
| 20 |
It is generally a best practice as it is often more readable to use concatenation instead of interpolation for variables inside strings.