Files
admin-php-module/models/Modifier.php
miroman-afk 9c3b633098 v.2.19
Обновлены миграции
Разработка парсера меню из 1с
2022-06-22 23:05:26 +03:00

15 lines
249 B
PHP

<?php
namespace App\Component\Models;
use Illuminate\Database\Eloquent\Model;
class Modifier extends Model {
protected $table = 'modifiers';
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}