Download the PHP package einnar82/custom-database-driver without Composer
On this page you can find all versions of the php package einnar82/custom-database-driver. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download einnar82/custom-database-driver
More information about einnar82/custom-database-driver
Files in einnar82/custom-database-driver
Download einnar82/custom-database-driver
More information about einnar82/custom-database-driver
Files in einnar82/custom-database-driver
Vendor einnar82
Package custom-database-driver
Short Description Removed the namespace in database notification types in Laravel.
License MIT
Homepage https://github.com/einnar82/custom-database-driver
Package custom-database-driver
Short Description Removed the namespace in database notification types in Laravel.
License MIT
Homepage https://github.com/einnar82/custom-database-driver
Please rate this library. Is it a good library?
Informations about the package custom-database-driver
Custom Database Driver For Laravel
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];
}
All versions of custom-database-driver with dependencies
PHP Build Version
Package Version
Requires
illuminate/support Version
~5
The package einnar82/custom-database-driver contains the following files
Loading the files please wait ....