Blame view
app/Models/Flot.php
282 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 16 17 |
protected $fillable = [ 'employer_id', 'name', 'text', 'image' ]; |
7c1e05248 Формы настройки с... |
18 |
} |