26 lines
533 B
PHP
Executable File
26 lines
533 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\MorphOne;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Setting extends Model
|
|
{
|
|
use HasFactory, SoftDeletes;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'email',
|
|
'contact_number',
|
|
'description',
|
|
];
|
|
|
|
public function attachment(): MorphOne
|
|
{
|
|
return $this->morphOne(Attachment::class, 'attachmentable');
|
|
}
|
|
}
|