1
0
forked from poc/pds

Added invoice master model file

This commit is contained in:
dhanabalan
2026-01-03 11:38:55 +05:30
parent fdd9dbbfb2
commit 0ec98d2f9f

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class InvoiceMaster extends Model
{
use SoftDeletes;
protected $fillable = [
"receiving_plant",
"receiving_plant_name",
"transit_days",
"transport_name",
"created_at",
"created_by",
"updated_by",
"updated_at"
];
}