-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathTransaction.php
56 lines (45 loc) · 1.18 KB
/
Transaction.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Transaction extends Model
{
public $dates = [
'date',
];
protected $fillable = [
'account_id', 'sequence_number', 'date', 'description', 'reference', 'credit_amount', 'debit_amount',
'closing_balance', 'type', 'note', 'invoice', 'transactional_type', 'transactional_id',
];
protected $casts = [
'credit_amount' => 'float',
'debit_amount' => 'float',
'closing_balance' => 'float',
];
public function isCredit()
{
return $this->credit_amount > 0;
}
public function isDebit()
{
return $this->debit_amount > 0;
}
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function account()
{
return $this->belongsTo(Account::class);
}
public function transactionType()
{
return $this->belongsTo(TransactionType::class, 'type');
}
public function scopeWithInvoice($query)
{
return $query->where('invoice', '<>', null);
}
public function scopeWithoutInvoice($query)
{
return $query->where('invoice', null);
}
}