v1.5.0 Added notifications - Pytlick

This commit is contained in:
2020-11-30 15:14:11 +01:00
parent a082ac9cea
commit f44133285d
18 changed files with 1258 additions and 80 deletions
+2
View File
@@ -16,6 +16,8 @@ use Illuminate\Support\Facades\Route;
Route::get("/", "RootController@index")->name("root.index");
Route::get("/home", "RootController@index")->name("root.index");
Route::post('/push','PushNotificationController@store');
Route::get("/login", "UserController@showLogin")->name("users.show-login");
Route::post("/login", "UserController@login")->name("users.login");
Route::get("/logout", "UserController@logout")->name("users.logout");