onesite/notify

Send notification v3.0.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,
        ]
    ]
]
?>