59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class LedgerEntry extends Model
|
|
{
|
|
use HasFactory, SoftDeletes;
|
|
|
|
protected $fillable = [
|
|
'entry_date',
|
|
'chart_of_account_id',
|
|
'currency_id',
|
|
'amount',
|
|
'description',
|
|
'source_type',
|
|
'source_id',
|
|
'created_by',
|
|
];
|
|
|
|
protected $casts = [
|
|
'entry_date' => 'date',
|
|
'amount' => 'decimal:2',
|
|
];
|
|
|
|
public function chartOfAccount(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ChartOfAccount::class);
|
|
}
|
|
|
|
public function currency(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Currency::class);
|
|
}
|
|
|
|
public function creator(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
|
|
public function scopeIncome($query)
|
|
{
|
|
return $query->whereHas('chartOfAccount', function ($q) {
|
|
$q->where('type', 'income');
|
|
});
|
|
}
|
|
|
|
public function scopeExpense($query)
|
|
{
|
|
return $query->whereHas('chartOfAccount', function ($q) {
|
|
$q->where('type', 'expense');
|
|
});
|
|
}
|
|
}
|