59 lines
2.1 KiB
PHP
59 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications\Packages;
|
|
|
|
use App\Models\EventPackage;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class EventPackagePhotoThresholdNotification extends Notification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
public function __construct(
|
|
private readonly EventPackage $eventPackage,
|
|
private readonly float $threshold,
|
|
private readonly int $limit,
|
|
private readonly int $used,
|
|
) {}
|
|
|
|
public function via(object $notifiable): array
|
|
{
|
|
return ['mail'];
|
|
}
|
|
|
|
public function toMail(object $notifiable): MailMessage
|
|
{
|
|
$event = $this->eventPackage->event;
|
|
$tenant = $event?->tenant;
|
|
$package = $this->eventPackage->package;
|
|
|
|
$percentage = (int) round($this->threshold * 100);
|
|
$remaining = max(0, $this->limit - $this->used);
|
|
$eventName = $event?->name['de'] ?? $event?->name['en'] ?? $event?->name ?? __('emails.package_limits.event_fallback');
|
|
|
|
$url = url('/tenant/events/'.($event?->slug ?? ''));
|
|
|
|
return (new MailMessage)
|
|
->subject(__('emails.package_limits.photo_threshold.subject', [
|
|
'event' => $eventName,
|
|
'percentage' => $percentage,
|
|
]))
|
|
->greeting(__('emails.package_limits.photo_threshold.greeting', [
|
|
'name' => $tenant?->name ?? __('emails.package_limits.team_fallback'),
|
|
]))
|
|
->line(__('emails.package_limits.photo_threshold.body', [
|
|
'event' => $eventName,
|
|
'package' => $package?->getNameForLocale() ?? $package?->name ?? __('emails.package_limits.package_fallback'),
|
|
'percentage' => $percentage,
|
|
'used' => $this->used,
|
|
'limit' => $this->limit,
|
|
'remaining' => $remaining,
|
|
]))
|
|
->action(__('emails.package_limits.photo_threshold.action'), $url)
|
|
->line(__('emails.package_limits.footer'));
|
|
}
|
|
}
|