Files
HospitalOborniki/app/Models/Header.php
2025-05-10 16:52:45 +02:00

15 lines
253 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Header extends Model
{
protected $fillable = ['telephone', 'links', 'logo', 'title1', 'title2', 'subtitle'];
protected $casts = [
'links' => 'array',
];
}