Send notification v3.0.0


License
MIT

Documentation

Laravel send notifications

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,
        ]
    ]
]
?>