updated controller and layout blade

This commit is contained in:
Vedde 2020-06-22 15:28:20 +02:00
parent 4a8336e677
commit c31a3e2c11
2 changed files with 2 additions and 1 deletions

View File

@ -537,7 +537,6 @@ main {
.tbl > tbody > tr > td > a { .tbl > tbody > tr > td > a {
width: 100%; width: 100%;
display: flex;
} }
.tbl > tbody > tr > td > a > img { .tbl > tbody > tr > td > a > img {

View File

@ -24,6 +24,8 @@ Route::get("/login", "UserController@showLogin")->name("users.show-login");
Route::post("/login", "UserController@login")->name("users.login"); Route::post("/login", "UserController@login")->name("users.login");
Route::get("/logout", "UserController@logout")->name("users.logout"); Route::get("/logout", "UserController@logout")->name("users.logout");
Route::resource("menu-plans", "");
Route::resource("users", "UserController"); Route::resource("users", "UserController");
Route::resource("events", "EventController"); Route::resource("events", "EventController");
Route::resource("washing-machines", "WashingMachineController"); Route::resource("washing-machines", "WashingMachineController");