mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
27 lines
454 B
PHP
27 lines
454 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use App\Enums\ContactCategory;
|
|
|
|
class ContactSubmission extends Model
|
|
{
|
|
protected $fillable
|
|
= [
|
|
'name',
|
|
'email',
|
|
'discord',
|
|
'category',
|
|
'subject',
|
|
'message',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'category' => ContactCategory::class,
|
|
];
|
|
}
|
|
}
|