add budgets
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user