digitalcloud/reactive-notification

Reactive Laravel Notification

v1.0 2018-12-30 13:10 UTC

This package is auto-updated.

Last update: 2024-03-29 03:51:13 UTC


README

Installation

PHP >=5.6 and Laravel ^5.3 are required.

To get the latest version of Reactive Laravel notification, simply require the project using Composer:

composer require digitalcloud/reactive-notification

publishing migration file

php artisan vendor:publish --provider="Digitalcloud\ReactiveNotification\ReactiveNotificationServiceProvider"

migrate published migration files

php artisan migrate

Usage

  1. Change trait used in model from Illuminate\Notifications\Notifiable to Digitalcloud\ReactiveNotification\Traits\Notifiable
<?php

namespace App;

use Digitalcloud\ReactiveNotification\Traits\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use Notifiable;
}
  1. Change delivery channel from database or DatabaseChannel to Digitalcloud\ReactiveNotification\Channels\DatabaseChannel
<?php

namespace App\Notifications;

use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Digitalcloud\ReactiveNotification\Channels\DatabaseChannel;

class InvoicePaid extends Notification implements ShouldQueue
{
    use Queueable;

    public function via($notifiable)
    {
        return [DatabaseChannel::class,'.../'];
    }
    
    
    public function toDatabase($notifiable){
        return [
          "title"=> trans("invoice_title"),
          "details"=> trans("invoice_details"),
        ];
    }
}

Example

$user->notify(new InvoicePaid($invoice));

\App::setLocale("en");
$result = $user->notifications()->first()->data;

the result will be [ "title" => "Invoice title", "details" => "Invoice details" ]

then change the old language from en into ar

\App::setLocale("ar");
$result = $user->notifications()->first()->data;

and the result will be [ "title" => "عنوان الفاتورة", "details" => "تفاصيل الفاتورة" ]