35 lines
652 B
PHP
35 lines
652 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 Survey1 extends ExtendedModel
|
|
{
|
|
protected $fillable = [
|
|
'lastname',
|
|
'firstname',
|
|
'city',
|
|
'email',
|
|
'phone',
|
|
'question1',
|
|
'question2',
|
|
'question3',
|
|
'question4',
|
|
'question5',
|
|
'question6',
|
|
'support'
|
|
];
|
|
|
|
protected $table = 'survey_1';
|
|
}
|