layer-chicken/app/Observers/EggCollectionItemObserver.php

25 lines
523 B
PHP

<?php
namespace App\Observers;
use App\Models\EggCollectionItem;
class EggCollectionItemObserver
{
/**
* Handle the EggCollectionItem "saved" event.
*/
public function saved(EggCollectionItem $eggCollectionItem): void
{
$eggCollectionItem->eggCollection?->syncTotals();
}
/**
* Handle the EggCollectionItem "deleted" event.
*/
public function deleted(EggCollectionItem $eggCollectionItem): void
{
$eggCollectionItem->eggCollection?->syncTotals();
}
}