LINE Notify Provider for Laravel 7 notification
energyweapons/laravel-line-notify is a Laravel package for line notify provider for laravel 7 notification.
It currently has 1 GitHub stars and 9 downloads on Packagist (latest version 1.0).
Install it with composer require energyweapons/laravel-line-notify.
Discover more Laravel packages by energyweapons
or browse all Laravel packages to compare alternatives.
Last updated
LINE Notify Provider for Laravel 7.x Notification.
install package
$ composer require energyweapons/laravel-line-notify
Add Energyweapons\LineNotify\LineNotifyServiceProvider to config/app.php or like.
Make notifable class (ex User Model entity)
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
// ...
/**
* @return string LINE Notify OAuth2 token
*/
protected function routeNotificationForLine()
{
return 'ADD_YOUR_ACCESS_TOKEN_HERE';
}
}
Make notification
<?php
namespace App\Notifications;
use App\User;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Notification;
use Hinaloe\LineNotify\Message\LineMessage;
class NewUserNotification extends Notification// implements ShouldQueue
{
use Queueable;
/** @var User */
protected $user;
/**
* Create a new notification instance.
*
* @param User $user
*/
public function __construct(User $user)
{
$this->user = $user;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
*
* @return array
*/
public function via($notifiable)
{
return ['line'];
}
/**
* @param mixed $notifable callee instance
* @return LineMessage
*/
public function toLine($notifable)
{
return (new LineMessage())->message('New user: ' . $this->user->name)
->imageUrl('https://example.com/sample.jpg') // With image url (jpeg only)
->imageFile('/path/to/image.png') // With image file (png/jpg/gif will convert to jpg)
->sticker(40, 2); // With Sticker
}
}
call $notifable->notify()
$user = User::find(114514);
$user->notify(new NewUserNotification($user));