28 lines
591 B
PHP
Executable File
28 lines
591 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 SurveyVaccinationState extends ExtendedModel
|
|
{
|
|
protected $fillable = [
|
|
'survey_id',
|
|
'department',
|
|
'state',
|
|
'expiration_date',
|
|
'age'
|
|
];
|
|
|
|
protected $table = 'survey_vaccination_state';
|
|
}
|