Sindbad~EG File Manager
<?php
namespace App\Notifications;
use App\Channels\SmsMessage;
use App\Models\EmailSMSTemplate;
use App\Utilities\Overrider;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class TransferMoney extends Notification {
use Queueable;
private $transaction;
private $template;
private $replace = [];
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct($transaction) {
Overrider::load("Settings");
$this->transaction = $transaction;
$this->template = EmailSMSTemplate::where('slug', 'TRANSFER_MONEY')->first();
$balance = get_account_balance($this->transaction->savings_account_id, $this->transaction->member_id);
$currency = $this->transaction->account->savings_type->currency->name;
$this->replace['name'] = $this->transaction->member->name;
$this->replace['account_number'] = $this->transaction->account->account_number;
$this->replace['sender'] = $this->transaction->parent_transaction->member->name;
$this->replace['sender_account_number'] = $this->transaction->parent_transaction->account->account_number;
$this->replace['amount'] = decimalPlace($this->transaction->amount, currency($currency));
$this->replace['balance'] = decimalPlace($balance, currency($currency));
$this->replace['dateTime'] = $this->transaction->created_at;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable) {
$channels = [];
if ($this->template != null && $this->template->email_status == 1) {
array_push($channels, 'mail');
}
if ($this->template != null && $this->template->sms_status == 1) {
array_push($channels, \App\Channels\SMS::class);
}
if ($this->template != null && $this->template->notification_status == 1) {
array_push($channels, 'database');
}
return $channels;
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable) {
$message = processShortCode($this->template->email_body, $this->replace);
return (new MailMessage)
->subject($this->template->subject)
->markdown('email.notification', ['message' => $message]);
}
/**
* Get the sms representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toSMS($notifiable) {
$message = processShortCode($this->template->sms_body, $this->replace);
return (new SmsMessage())
->setContent($message)
->setRecipient($notifiable->country_code . $notifiable->mobile);
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable) {
$message = processShortCode($this->template->notification_body, $this->replace);
return ['message' => $message];
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists