2023-12-27 22:54:58 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Form\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Form extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
|
|
|
|
|
|
|
public $guarded = [];
|
|
|
|
|
|
|
|
public $casts = [
|
|
|
|
'config' => 'json',
|
|
|
|
];
|
2023-12-31 21:46:52 +01:00
|
|
|
|
|
|
|
/** @var array<int, string> */
|
|
|
|
public $dates = ['from', 'to', 'registration_from', 'registration_until'];
|
2023-12-27 22:54:58 +01:00
|
|
|
}
|