17 lines
291 B
PHP
17 lines
291 B
PHP
<?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'
|
|
];
|
|
}
|