Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Notifications/AppointmentNotification.php
Назад
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; class AppointmentNotification extends Notification { use Queueable; protected $notificationData; /** * Create a new notification instance. */ public function __construct(array $notificationData) { $this->notificationData = $notificationData; // Store the notification data } /** * Get the notification's delivery channels. * * @return array<int, string> */ public function via($notifiable) { // return ['database', 'mail']; return ['database']; } /** * Get the mail representation of the notification. */ public function toMail($notifiable): MailMessage { return (new MailMessage) ->line($this->notificationData['message']) // Access the message from the notification array // ->action('View Appointment', url('/appointments')) // Update with your route ->line('Thank you for using our application!'); } /** * Get the array representation of the notification. * * @return array<string, mixed> */ public function toArray($notifiable): array { return [ 'message' => $this->notificationData['message'], // Return the message 'appointment_id' => $this->notificationData['appointment_id'], // Include appointment ID if needed ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка