mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
69 lines
1.9 KiB
PHP
69 lines
1.9 KiB
PHP
<?php
|
|
namespace Domain\UploadRequest\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Domain\UploadRequest\Models\UploadRequest;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
class UploadRequestNotification extends Notification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(
|
|
public UploadRequest $uploadRequest
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function via($notifiable)
|
|
{
|
|
return ['mail'];
|
|
}
|
|
|
|
/**
|
|
* Get the mail representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
*/
|
|
public function toMail($notifiable)
|
|
{
|
|
// Format optional message
|
|
$message = $this->uploadRequest->notes
|
|
? __t('file_request_optional_message', ['name' => $this->uploadRequest->user->settings->first_name, 'notes' => $this->uploadRequest->notes])
|
|
: null;
|
|
|
|
return (new MailMessage)
|
|
->subject(__t('file_request_notify_title', ['name' => $this->uploadRequest->user->settings->first_name]))
|
|
->greeting(__t('hello'))
|
|
->line(__t('file_request_notify_description', ['name' => $this->uploadRequest->user->settings->first_name]))
|
|
->line($message)
|
|
->action(__t('upload_your_files'), url("/request/{$this->uploadRequest->id}/upload"))
|
|
->salutation(__t('thanks_salutation'));
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function toArray($notifiable)
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
}
|