boykioyb/laravel-notice-fcm

Laravel send notification by fcm v1.0.0

v1.0.4 2022-01-11 05:41 UTC

This package is auto-updated.

Last update: 2024-04-11 10:34:57 UTC


README

php artisan vendor:publish --force

Select notify-configs, notify-migrations

php artisan migrate

Edit logging config

open file config/logging.php

Add new logging:

<?php
return [
    'channels'=>[
        'notification' => [
            'driver' => 'daily',
            'path' => storage_path('logs/notification.log'),
            'level' => 'debug',
            'days' => 14,
        ]
    ]
]
?>

Add NOTIFICATION_FCM_API_KEY to .env