Optimise charge table, implemented charge recording, optimised payment recording

This commit is contained in:
Deon George
2021-10-01 14:59:04 +10:00
parent c0ad46ba65
commit 7c5369203c
17 changed files with 731 additions and 48 deletions

View File

@@ -17,6 +17,11 @@ class PaymentItem extends Model
/* RELATIONS */
public function invoice()
{
return $this->belongsTo(Invoice::class);
}
public function payment() {
return $this->belongsTo(Payment::class);
}