created framework for market orders and public contracts
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Market;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class MarketGroup extends Model
|
||||
{
|
||||
//Table Name
|
||||
protected $table = 'market_groups';
|
||||
|
||||
//Timestamps
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* Items which are mass assignable
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'group',
|
||||
'description',
|
||||
'market_group_id',
|
||||
'name',
|
||||
'parent_group_id',
|
||||
'types',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user