Files
alrahma_sunday_school_api/app/Services/Refunds/RefundNotificationService.php
T
2026-03-10 23:12:49 -04:00

18 lines
417 B
PHP

<?php
namespace App\Services\Refunds;
use Illuminate\Support\Facades\Log;
class RefundNotificationService
{
public function notifyPending(int $parentId, float $amount, ?string $portalLink = null): void
{
Log::info('Refund pending notification queued.', [
'parent_id' => $parentId,
'amount' => round($amount, 2),
'portal_link' => $portalLink,
]);
}
}