18 lines
268 B
PHP
Executable File
18 lines
268 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Ship\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class Seo extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['title', 'description'];
|
|
|
|
public function seoable()
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|