28 lines
496 B
PHP
28 lines
496 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Database\Factories\SocialLinkFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SocialLink extends Model
|
|
{
|
|
/** @use HasFactory<SocialLinkFactory> */
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'platform',
|
|
'url',
|
|
'icon',
|
|
'sort_order',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'sort_order' => 'integer',
|
|
];
|
|
}
|
|
}
|