File "RecurringInvoiceNotification.php"
Full path: /home/oishifashion/ap.oishifashion.com/app/Notifications/RecurringInvoiceNotification.php
File
size: 1.37 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
class RecurringInvoiceNotification extends Notification
{
use Queueable;
protected $invoice;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct($invoice)
{
$this->invoice = $invoice;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['database'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toDatabase($notifiable)
{
return [
'transaction_id' => $this->invoice->id,
'invoice_no' => $this->invoice->invoice_no,
'invoice_status' => $this->invoice->status,
'out_of_stock_product' => ! empty($this->invoice->out_of_stock_product) ? $this->invoice->out_of_stock_product : null,
'subscription_no' => $this->invoice->subscription_no,
];
}
}