first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
<?php
namespace Common\Billing\Notifications;
use App\Models\User;
use Common\Billing\Invoices\Invoice;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class NewInvoiceAvailable extends Notification implements ShouldQueue
{
use Queueable;
public function __construct(public Invoice $invoice)
{
}
public function via(mixed $notifiable): array
{
return ['mail', 'database'];
}
public function toMail(User $notifiable): MailMessage
{
return (new MailMessage())
->subject($this->mainLine())
->level('error')
->greeting(
__('Hello, :name', ['name' => $notifiable->display_name]),
)
->line($this->descriptionLine())
->action(__('View receipt'), $this->mainAction());
}
public function toArray(mixed $notifiable): array
{
return [
'lines' => [
[
'content' => $this->mainLine(),
],
[
'content' => $this->descriptionLine(),
],
],
'buttonActions' => [
[
'label' => __('View receipt'),
'action' => $this->mainAction(),
],
],
];
}
protected function mainLine(): string
{
$siteName = config('app.name');
return __(':name payment receipt', [
'name' => $siteName,
]);
}
protected function descriptionLine(): string
{
$siteName = config('app.name');
return __('This is a receipt for your latest :siteName payment.', [
'siteName' => $siteName,
]);
}
protected function mainAction(): string
{
return config('app.url') . '/billing/invoices/' . $this->invoice->uuid;
}
}

View File

@@ -0,0 +1,79 @@
<?php
namespace Common\Billing\Notifications;
use App\Models\User;
use Common\Billing\Subscription;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class PaymentFailed extends Notification implements ShouldQueue
{
use Queueable;
public function __construct(public Subscription $subscription)
{
}
public function via(mixed $notifiable): array
{
return ['mail', 'database'];
}
public function toMail(User $notifiable): MailMessage
{
return (new MailMessage())
->subject($this->mainLine())
->level('error')
->greeting(
__('Hello, :name', ['name' => $notifiable->display_name]),
)
->line($this->descriptionLine())
->action(__('View subscription'), $this->mainAction());
}
public function toArray(mixed $notifiable): array
{
return [
'lines' => [
[
'content' => $this->mainLine(),
],
[
'content' => $this->descriptionLine(),
],
],
'buttonActions' => [
[
'label' => __('View subscription'),
'action' => $this->mainAction(),
],
],
];
}
protected function mainLine(): string
{
$siteName = config('app.name');
return __('Payment for :name subscription failed', [
'name' => $siteName,
]);
}
protected function descriptionLine(): string
{
$siteName = config('app.name');
$planName = $this->subscription->product->name;
return __(
'We could not charge your specified payment method for :planName. We will retry it one more time, after which time your subscription on :siteName will be cancelled and you will lose associated benefits.',
['siteName' => $siteName, 'planName' => $planName],
);
}
protected function mainAction(): string
{
return config('app.url') . '/billing';
}
}