New notification page..

This commit is contained in:
Cüneyt Şentürk
2021-06-19 18:16:09 +03:00
parent 856e10a2dd
commit 4687185f4a
34 changed files with 2652 additions and 43 deletions

View File

@ -40,6 +40,8 @@ Route::group(['prefix' => 'common'], function () {
Route::resource('items', 'Common\Items', ['middleware' => ['money', 'dropzone']]);
Route::post('notifications/disable', 'Common\Notifications@disable')->name('notifications.disable');
Route::get('notifications/readAll', 'Common\Notifications@readAll')->name('notifications.read-all');
Route::resource('notifications', 'Common\Notifications');
Route::post('bulk-actions/{group}/{type}', 'Common\BulkActions@action')->name('bulk-actions.action');