Edit File: BlockUser.php
<?php namespace App\Notifications; class BlockUser extends BaseNotification { public function __construct() { $this->data = [ 'title_ar' => 'حظر', 'title_en' => 'blocked', 'body_ar' => 'تم حظرك من قبل الإدارة', 'body_en' => 'You have been blocked by the administration', 'type' => 'block', ]; } }
Back to File Manager