Files
ghostpizza/app/Models/Homepage.php
2025-10-11 17:02:49 +02:00

29 lines
501 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Homepage extends Model
{
use HasFactory;
protected $table = 'homepage';
protected $fillable = [
'photo',
'photo_mobile',
'photo_menu',
'title',
'body',
'address',
'delivery',
'opening_hours',
'widget_link'
];
protected $casts = [
'opening_hours' => 'array',
];
}