31 lines
662 B
PHP
31 lines
662 B
PHP
<?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 SubscribeYouthFireFighter extends ExtendedModel
|
|
{
|
|
protected $table = 'subscribe_youth_fire_fighter';
|
|
protected $fillable = [
|
|
'lastnameParent',
|
|
'firstnameParent',
|
|
'firstnameChild',
|
|
'street',
|
|
'streetnumber',
|
|
'city',
|
|
'phone',
|
|
'birthday',
|
|
'email'
|
|
];
|
|
}
|