35 lines
597 B
PHP
35 lines
597 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Storage;
|
|
|
|
class Media extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
/**
|
|
* The attributes that should be mutated to dates.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dates = ['deleted_at'];
|
|
|
|
public function url()
|
|
{
|
|
$path = $this->media_path;
|
|
$url = Storage::url($path);
|
|
|
|
return url($url);
|
|
}
|
|
|
|
public function thumbnailUrl()
|
|
{
|
|
$path = $this->thumbnail_path;
|
|
$url = Storage::url($path);
|
|
|
|
return url($url);
|
|
}
|
|
}
|