v.2.19
Обновлены миграции Разработка парсера меню из 1с
This commit is contained in:
15
models/Menu.php
Normal file
15
models/Menu.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Component\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Menu extends Model {
|
||||
protected $table = 'menu';
|
||||
/**
|
||||
* The attributes that aren't mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $guarded = [];
|
||||
}
|
||||
@@ -6,4 +6,10 @@ use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Modifier extends Model {
|
||||
protected $table = 'modifiers';
|
||||
/**
|
||||
* The attributes that aren't mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $guarded = [];
|
||||
}
|
||||
15
models/ReportCategories.php
Normal file
15
models/ReportCategories.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Component\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ReportCategories extends Model {
|
||||
protected $table = 'report_categories';
|
||||
/**
|
||||
* The attributes that aren't mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $guarded = [];
|
||||
}
|
||||
Reference in New Issue
Block a user