semantechs/notification

Notification agent to handle all kind of notification with pusher

v2.1.5 2024-09-26 19:31 UTC

README

Open composer.json and add following line

"autoload": {

    ....

    "psr-4": {

        ....

        "Sementechs\\Notification\\": "vendor/semantechs/notification/src/"

    }

},

Open app.php in config folder and add following line

'providers' => ServiceProvider::defaultProviders()->merge([

    ....

    Sementechs\Notification\NotificationServiceProvider::class,

])->toArray(),

Place your firebase service account file in storage folder and add file name in .env file

FIREBASE_CREDENTIALS=file_name.json

BROADCAST_DRIVER=puhser

PUSHER_APP_ID=

PUSHER_APP_KEY=

PUSHER_APP_SECRET=

PUSHER_HOST=

PUSHER_PORT=443

Run following commands

composer dump-autoload

php artisan vendor:publish --tag=laravel-assets

php artisan migrate

Available Methods

  1. Send Notification

$notificationObject = [ 'sender_id' => 1, 'receiver_ids' => [ 1, 2, 3 ], 'channel' => 'web', // web, mobile 'body' => [ 'title' => 'Title', 'body' => 'Detail' ], 'type' => 'admin' // admin, user ];

NotificationController::sendNotification($notificationObject);

  1. Get All Notification

$type = web/user

NotificationController::getAllNotifications($type, $userId)

  1. Read All Notifications

$data = objects of all notifications

NotificationController::readAll($data)