onesite/notify

Send notification v3.0.0

Maintainers

Package info

github.com/1sitevn/laravel-notify

pkg:composer/onesite/notify

Statistics

Installs: 365

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v3.0.24 2022-07-04 10:47 UTC

README

php artisan vendor:publish --force php artisan migrate

Logging config

vim config/logging.php

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