30 lines
605 B
PHP
30 lines
605 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 SubscribeDekon extends ExtendedModel
|
|
{
|
|
protected $fillable = [
|
|
'lastname',
|
|
'firstname',
|
|
'city',
|
|
'city_work',
|
|
'truppmann2',
|
|
'atemschutz',
|
|
'maschinist',
|
|
];
|
|
|
|
protected $table = 'subscribe_dekon';
|
|
}
|