Files
fotospiel-app/app/Models/LegalPage.php
2025-09-08 14:03:43 +02:00

19 lines
346 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class LegalPage extends Model
{
protected $table = 'legal_pages';
protected $guarded = [];
protected $casts = [
'title' => 'array',
'body_markdown' => 'array',
'is_published' => 'boolean',
'effective_from' => 'datetime',
];
}