einnar82/custom-database-driver

Removed the namespace in database notification types in Laravel.

1.0 2018-12-26 00:56 UTC

This package is auto-updated.

Last update: 2024-04-26 12:52:46 UTC


README

Simplified the notification type of Laravel Database Notifications.

Before:

 { "type":"App\\Notifications\\API\\v1\\Vehicles\\VehicleDeletedNotification",

After:

{	"type": "VehicleDeletedNotification",

Installation:

In your terminal type,

$ composer require einnar82/custom-database-driver

Then, change your notification class driver into,

use RannieOllit\CustomDatabaseDriver\CustomDatabaseChannel;    

/**
    * Get the notification's delivery channels.
    *
    * @param mixed $notifiable
    * @return array
    */

public  function  via($notifiable)
{
    return  [CustomDatabaseChannel::class];
}