34 lines
801 B
PHP
34 lines
801 B
PHP
<?php
|
|
|
|
namespace App\Models\Common;
|
|
|
|
use App\Traits\Owners;
|
|
use App\Traits\Sources;
|
|
use App\Traits\Tenants;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Plank\Mediable\Media as BaseMedia;
|
|
use Plank\Mediable\Helpers\File;
|
|
|
|
class Media extends BaseMedia
|
|
{
|
|
use Owners, SoftDeletes, Sources, Tenants;
|
|
|
|
protected $fillable = ['company_id', 'created_from', 'created_by'];
|
|
|
|
protected $casts = [
|
|
'deleted_at' => 'datetime',
|
|
];
|
|
|
|
/**
|
|
* Calculate the file size in human readable byte notation.
|
|
* @param int $precision (_optional_) Number of decimal places to include.
|
|
* @return string
|
|
*/
|
|
public function readableSize(int $precision = 1): string
|
|
{
|
|
$size = intval($this->size);
|
|
|
|
return File::readableSize($size, $precision);
|
|
}
|
|
}
|