33 lines
681 B
PHP
33 lines
681 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
|
|
|
class Expense extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = [
|
|
'happened_on' => 'date:Y-m-d',
|
|
];
|
|
|
|
/**
|
|
* Get all the transactions for the Sale
|
|
*/
|
|
public function transactions(): MorphMany
|
|
{
|
|
return $this->morphMany(Transaction::class, 'transactionable');
|
|
}
|
|
|
|
public function branch(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Branch::class);
|
|
}
|
|
}
|