Blame view
app/Models/Flot.php
317 Bytes
7c1e05248 Формы настройки с... |
1 2 3 4 5 6 7 8 9 10 |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Flot extends Model { use HasFactory; |
d152a3a68 Создание основных... |
11 12 13 14 15 |
protected $fillable = [ 'employer_id', 'name', 'text', |
e3c7b0ffb Коммит на понедел... |
16 17 18 |
'image', 'region', 'power' |
d152a3a68 Создание основных... |
19 |
]; |
7c1e05248 Формы настройки с... |
20 |
} |