Файловый менеджер - Редактировать - /home/clickysoft/public_html/assets.clickysoft.net/app/Notifications/MaintenanceReminderNotification.php
Назад
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; class MaintenanceReminderNotification extends Notification implements ShouldQueue { use Queueable; protected $maintenance; /** * Create a new notification instance. */ public function __construct($maintenance) { $this->maintenance = $maintenance; } /** * Get the notification's delivery channels. * * @return array<int, string> */ public function via(object $notifiable): array { return ['mail']; } /** * Get the mail representation of the notification. */ public function toMail(object $notifiable): MailMessage { return (new MailMessage) ->subject('Asset Maintenance Reminder') ->line('The asset with ID ' . $this->maintenance->asset_id . ' is scheduled for maintenance today.') ->action('View Details', url('/maintenance/' . $this->maintenance->id)) ->line('Please ensure the maintenance task is completed.'); } /** * Get the array representation of the notification. * * @return array<string, mixed> */ public function toArray(object $notifiable): array { return [ // ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка