Обновлен перенос клиента из группы в группу
Обновлен метод восстановления смены
Добавлен метод загрузки меню 1с из облака
This commit is contained in:
miroman-afk
2022-07-25 23:26:44 +03:00
parent 9c3b633098
commit 1af2b267f5
14 changed files with 1848 additions and 309 deletions

15
models/ModifiersList.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace App\Component\Models;
use Illuminate\Database\Eloquent\Model;
class ModifiersList extends Model {
protected $table = 'modifiers_list';
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}

View File

@@ -6,4 +6,10 @@ use Illuminate\Database\Eloquent\Model;
class Printer extends Model {
protected $table = 'printers';
}
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}