created OrderStatus Model, Table & Seeder

This commit is contained in:
2025-04-23 16:28:02 +02:00
parent 71f3a01ed2
commit 995f61632b
4 changed files with 75 additions and 2 deletions
+16
View File
@@ -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'
];
}