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

16 lines
276 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Footer extends Model
{
protected $fillable = ['wosp_link', 'links', 'registration_hours'];
protected $casts = [
'links' => 'array',
'registration_hours' => 'array',
];
}