Files

46 lines
886 B
PHP
Raw Permalink Normal View History

2025-01-07 17:23:42 +07:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class BudgetControlLog extends Model
{
use SoftDeletes;
protected $table = 'budget_control_log';
protected $fillable = [
'cabang_id',
'sender_id',
'receiver_id',
'amount',
'remarks',
'periode_month',
'periode_year',
'transferred_at',
'closing_at',
'status',
];
public function user()
{
return $this->belongsTo(Admin::class, 'user_id');
}
public function cabang()
{
return $this->belongsTo(Cabang::class, 'cabang_id');
}
public function sender()
{
return $this->belongsTo(Admin::class, 'sender_id');
}
public function receiver()
{
return $this->belongsTo(Admin::class, 'receiver_id');
}
}