-Fix modifiers in orders
This commit is contained in:
miroman-afk
2022-01-27 13:29:12 +03:00
parent 284d2bcb60
commit fb3a28e74e
9 changed files with 260 additions and 65 deletions

15
models/ActionTypes.php Normal file
View File

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