Edit File: NotifyUser.php
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; class NotifyUser extends BaseNotification { use Queueable; public $data; public function __construct($request) { $this->data = [ 'body_ar' => $request['body_ar'], 'body_en' => $request['body_en'], 'type' => isset($request['type']) ? $request['type'] : 'admin_notify', ]; } }
Back to File Manager