https://github.com/alfa6661/laravel-firebase
Google Firebase Notification for Laravel
https://github.com/alfa6661/laravel-firebase
firebase-notification laravel laravel-firebase laravel5-package notifications
Last synced: 26 days ago
JSON representation
Google Firebase Notification for Laravel
- Host: GitHub
- URL: https://github.com/alfa6661/laravel-firebase
- Owner: alfa6661
- Created: 2016-08-25T08:29:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-04-04T13:57:23.000Z (about 5 years ago)
- Last Synced: 2025-03-25T17:47:02.830Z (about 1 month ago)
- Topics: firebase-notification, laravel, laravel-firebase, laravel5-package, notifications
- Language: PHP
- Homepage:
- Size: 12.7 KB
- Stars: 9
- Watchers: 2
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# laravel-firebase
[](https://styleci.io/repos/66539893)
[](https://packagist.org/packages/alfa6661/laravel-firebase)
[](https://packagist.org/packages/alfa6661/laravel-firebase)
[](https://packagist.org/packages/alfa6661/laravel-firebase)Google Firebase Notification for Laravel
This package makes it easy to send Firebase Notification with Laravel
## Installation
You can install the package via composer:
``` bash
composer require alfa6661/laravel-firebase
```You must install the service provider:
```php
// config/app.php
'providers' => [
...
Alfa6661\Firebase\FirebaseServiceProvider::class,
],
```### Setting up your Firebase account
Add your Firebase Key to your `config/services.php`:
```php
// config/services.php
...
'firebase' => [
'api_key' => env('FIREBASE_API_KEY'),
],
...
```## Usage
Now you can use the channel in your `via()` method inside the notification:
``` php
use Alfa6661\Firebase\FirebaseChannel;
use Alfa6661\Firebase\FirebaseMessage;
use Illuminate\Notifications\Notification;class CreditWasCreated extends Notification
{
public function via($notifiable)
{
return [FirebaseChannel::class];
}public function toFirebase($notifiable)
{
return FirebaseMessage::create()
->title('Title')
->body('Push notification body')
->data(['id' => $notifiable->id]);
}
}
```In order to let your Notification know which device user(s) you are targeting, add the `routeNotificationForFirebase` method to your Notifiable model.
You can either return a single device token, or if you want to notify multiple device just return an array containing all devices.
```php
public function routeNotificationForFirebase()
{
return ["DEVICE_TOKEN", "DEVICE_TOKEN"];
}
```