ranger / notification
You can create the to-do-list of your task.
Requires
- php: >=7.1.26
- guzzlehttp/guzzle: ^7.2
- pusher/pusher-php-server: ^7.0
This package is not auto-updated.
Last update: 2025-03-24 18:18:36 UTC
README
-
Run composer require ranger/notification
-
In config/app.php in providers add:
\Ranger\Notification\NotificationServiceProvider::class -
Go to vendor/ranger/notification folder
-
Keep "src/views/notification" folder in "resources/views"
-
Add @include('notification.notification') in the file where the bell will be shown
-
Add routes:
Route::get('ajax/get-notifications', 'NotifyController@getAllNotifications');
Route::post('ajax/read-notifications', 'NotifyController@readNotifications');
Route::post('ajax/read-all-notifications', 'NotifyController@readAllNotifications');
Route::post('ajax/execute-all-notifications', 'NotifyController@executeAllNotifications');
Route::get('show-all-notification', 'NotifyController@showAllNotifications');
Route::post('notify', 'NotifyController@getFromApi');