added new models

This commit is contained in:
Jagad R R
2024-12-11 12:29:55 +07:00
parent fc5372a181
commit 9ac256189d
12 changed files with 262 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class FormUpCountry extends Model
{
use SoftDeletes;
protected $table = 'form_up_country';
protected $fillable = [
'expense_number',
'user_id',
'rayon_id',
'tanggal',
'tujuan',
'jarak',
'allowance',
'transport_dalkot',
'transport_ankot',
'hotel',
'total',
'bukti1',
'bukti2',
'bukti3',
'account_number',
'status',
];
}