goszowski/lifecell-notification-channel

dev-master 2022-05-26 12:34 UTC

This package is not auto-updated.

Last update: 2024-04-12 19:54:04 UTC


README

Потрібно додати в конфіг services блок:

'lifecell' => [
    'endpoint' => env('LIFECELL_ENDPOINT', 'https://api.omnicell.com.ua/ip2sms/'),
    'username' => env('LIFECELL_USERNAME'),
    'password' => env('LIFECELL_PASSWORD'),
],

В модель User додати:

public function routeNotificationForLifecell()
{
    return $this->phone;
}

Приклад Notification:

public function via($notifiable)
{
    return ['lifecell'];
}

public function toLifecell($notifiable)
{
    return (new LifecellMessage('Have a nice day!'));
}