Edit File: NotifyAdmin.php
<?php namespace App\Notifications; use Illuminate\Notifications\Notification; use Illuminate\Bus\Queueable; class NotifyAdmin extends Notification { use Queueable; protected $messageData; public function __construct($messageData) { $this->messageData = $messageData; } public function via($notifiable) { return ['database']; } public function toArray($notifiable) { return $this->messageData; } }
Back to File Manager