29 lines
468 B
PHP
29 lines
468 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Attachment extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'media_id',
|
|
];
|
|
|
|
|
|
/**
|
|
* Get attachments attachable
|
|
*/
|
|
public function attachable()
|
|
{
|
|
return $this->morphTo();
|
|
}}
|