44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Modules\Expense\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
class Expense extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = [];
|
|
|
|
public function category() {
|
|
return $this->belongsTo(ExpenseCategory::class, 'category_id', 'id');
|
|
}
|
|
|
|
public function branch() {
|
|
return $this->belongsTo(\App\Models\Branch::class, 'branch_id', 'id');
|
|
}
|
|
|
|
public static function boot() {
|
|
parent::boot();
|
|
|
|
static::creating(function ($model) {
|
|
$number = Expense::max('id') + 1;
|
|
$model->reference = make_reference_id('EXP', $number);
|
|
});
|
|
}
|
|
|
|
public function getDateAttribute($value) {
|
|
return Carbon::parse($value)->format('d M, Y');
|
|
}
|
|
|
|
public function setAmountAttribute($value) {
|
|
$this->attributes['amount'] = ($value * 100);
|
|
}
|
|
|
|
public function getAmountAttribute($value) {
|
|
return ($value / 100);
|
|
}
|
|
}
|