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