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.

22 lines
390 B

11 months ago
<?php
namespace App\Models;
class Blacklist extends SoftDeletesModel
{
11 months ago
protected $guarded = ['id'];
protected $appends = ['file_detail'];
11 months ago
protected $casts = [
11 months ago
'file'=>'json'
11 months ago
];
11 months ago
public function getFileDetailAttribute()
11 months ago
{
11 months ago
if (empty($this->file)) {
11 months ago
return [];
}
return Upload::whereIn('id', $this->file)->get();
}
}