Feuerwehr-eppingen/app/Models/SubscribeVaccinate.php
Marco Glietsch 30c94735e2 Hinzugefügt
Anmeldeformular für Corona-Schutzimpfung
2021-04-18 19:52:27 +02:00

30 lines
610 B
PHP
Executable File

<?php
namespace App\Models;
use App\Models\Traits\FullTextSearch;
use App\Models\Traits\Documents;
use Illuminate\Database\Eloquent\Model;
use OwenIt\Auditing\Contracts\Auditable;
use Illuminate\Support\Arr;
use Cviebrock\EloquentSluggable\Sluggable;
use App\Helpers\TagHelper;
use Carbon\Carbon;
use App\Helpers\PostHelper;
use App\Http\Controllers\ServiceController;
class SubscribeVaccinate extends ExtendedModel
{
protected $fillable = [
'lastname',
'firstname',
'birthday',
'street',
'streetnumber',
'city',
'department',
];
protected $table = 'subscribe_vaccinate';
}