Files
expense/app/Models/FormOthers.php
T
2025-01-02 17:59:33 +07:00

42 lines
786 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class FormOthers extends Model
{
use SoftDeletes;
protected $table = 'form_others';
protected $fillable = [
'expense_number',
'user_id',
'kategori_id',
'tanggal',
'keterangan',
'total',
'approved_total',
'bukti1',
'bukti2',
'bukti3',
'account_number',
'status',
'approved_at',
'approved_by',
'final_approved_at',
'final_approved_by',
];
public function user()
{
return $this->belongsTo(Admin::class);
}
public function kategori()
{
return $this->belongsTo(Kategori::class);
}
}