You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
314 B

12 months ago
<?php
namespace App\Models;
11 months ago
use Illuminate\Database\Eloquent\Factories\HasFactory;
12 months ago
class Upload extends CommonModel
{
11 months ago
use HasFactory;
12 months ago
protected $appends = ['url'];
public function getUrlAttribute()
{
11 months ago
return getDomain() . '/' . $this->attributes['folder'] . '/' . $this->name;
12 months ago
}
}