created OrderStatus Model, Table & Seeder
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class OrderStatus extends Model
|
||||
{
|
||||
// The table associated with the model.
|
||||
protected $table = 'order_statuses';
|
||||
|
||||
// The attributes that are mass assignable.
|
||||
protected $fillable = [
|
||||
'name'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user