boykioyb/laravel-notice-fcm

Laravel通过fcm发送通知v1.0.0

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

This package is auto-updated.

Last update: 2024-09-11 11:18:46 UTC


README

php artisan vendor:publish --force

选择 notify-configs, notify-migrations

php artisan migrate

编辑日志配置

打开文件 config/logging.php

添加新的日志

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

将 NOTIFICATION_FCM_API_KEY 添加到 .env