54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Payment;
|
|
|
|
use App\Fee;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class Subscription extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* @var array<int, string>
|
|
*/
|
|
public $fillable = ['name', 'fee_id', 'split', 'for_promise'];
|
|
|
|
/**
|
|
* @var array<string, string>
|
|
*/
|
|
public $casts = [
|
|
'split' => 'boolean',
|
|
'for_promise' => 'boolean',
|
|
];
|
|
|
|
public function getAmount(): int
|
|
{
|
|
return $this->children->sum('amount');
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<Fee, self>
|
|
*/
|
|
public function fee(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Fee::class);
|
|
}
|
|
|
|
/**
|
|
* @return HasMany<SubscriptionChild>
|
|
*/
|
|
public function children(): HasMany
|
|
{
|
|
return $this->hasMany(SubscriptionChild::class, 'parent_id');
|
|
}
|
|
|
|
public static function booted(): void
|
|
{
|
|
static::deleting(fn ($model) => $model->children()->delete());
|
|
}
|
|
}
|