47 lines
1.6 KiB
PHP
47 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications\Packages;
|
|
|
|
use App\Models\TenantPackage;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class TenantPackageEventLimitNotification extends Notification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
public function __construct(
|
|
private readonly TenantPackage $tenantPackage,
|
|
private readonly int $limit,
|
|
) {}
|
|
|
|
public function via(object $notifiable): array
|
|
{
|
|
return ['mail'];
|
|
}
|
|
|
|
public function toMail(object $notifiable): MailMessage
|
|
{
|
|
$tenant = $this->tenantPackage->tenant;
|
|
$package = $this->tenantPackage->package;
|
|
|
|
$url = url('/tenant/billing');
|
|
|
|
return (new MailMessage)
|
|
->subject(__('emails.package_limits.event_limit.subject', [
|
|
'package' => $package?->getNameForLocale() ?? $package?->name ?? __('emails.package_limits.package_fallback'),
|
|
]))
|
|
->greeting(__('emails.package_limits.event_limit.greeting', [
|
|
'name' => $tenant?->name ?? __('emails.package_limits.team_fallback'),
|
|
]))
|
|
->line(__('emails.package_limits.event_limit.body', [
|
|
'package' => $package?->getNameForLocale() ?? $package?->name ?? __('emails.package_limits.package_fallback'),
|
|
'limit' => $this->limit,
|
|
]))
|
|
->action(__('emails.package_limits.event_limit.action'), $url)
|
|
->line(__('emails.package_limits.footer'));
|
|
}
|
|
}
|