<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rubik-llc / laravel-notification-manager example snippets
return [
/*
|--------------------------------------------------------------------------
| Subscribable notifications
|--------------------------------------------------------------------------
|
| All notifications which we would like to be subscribable must be placed here.
| If artisan command is used to create subscribable notification this will be autofilled
|
| Example:
| 'subscribable_notifications' => [
| 'order.accepted' => Rubik\NotificationManager\Tests\TestSupport\Notifications\OrderApprovedSubscribableNotification,
| 'order.rejected' => Rubik\NotificationManager\Tests\TestSupport\Notifications\OrderRejectedSubscribableNotification,
| ],
*/
'subscribable_notifications' => [
],
/*
|--------------------------------------------------------------------------
| Channels
|--------------------------------------------------------------------------
|
| All available channels must be placed here
| A notification will be sent to all these channels if model is subscribed to all channel("*").
| Example
| 'channels' => "database,broadcast",
|
*/
'channels' => "",
];
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Rubik\NotificationManager\Contracts\SubscribableNotificationContract;
use Rubik\NotificationManager\Traits\SubscribableNotification;
class TestNotification extends Notification implements SubscribableNotificationContract
{
use Queueable, SubscribableNotification;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}
/**
* Subscribable type based on the name in config file
*
* @return string
*/
public static function subscribableNotificationType(): string
{
return 'test';
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Rubik\NotificationManager\Contracts\SubscribableNotificationContract;
use Rubik\NotificationManager\Traits\SubscribableNotification;
class TestNotification extends Notification implements SubscribableNotificationContract
{
use Queueable, SubscribableNotification;
//Your code here
/**
* Subscribable type based on the name in config file
*
* @return string
*/
public static function subscribableNotificationType(): string
{
return 'test';
}
}