@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | GameMod::create($request->all()); |
| 55 | 55 | |
| 56 | 56 | return redirect()->route('admin.games.index') |
| 57 | - ->with('success','Game mod created successfully'); |
|
| 57 | + ->with('success', 'Game mod created successfully'); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | $gameMod->update($request->all()); |
| 81 | 81 | |
| 82 | 82 | return redirect()->route('admin.games.edit', ['game' => $gameMod->game_code]) |
| 83 | - ->with('success','Game Mod updated successfully'); |
|
| 83 | + ->with('success', 'Game Mod updated successfully'); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | /** |
@@ -93,6 +93,6 @@ discard block |
||
| 93 | 93 | { |
| 94 | 94 | $gameMod->delete(); |
| 95 | 95 | return redirect()->route('admin.games.index') |
| 96 | - ->with('success','Game Mod deleted successfully'); |
|
| 96 | + ->with('success', 'Game Mod deleted successfully'); |
|
| 97 | 97 | } |
| 98 | 98 | } |
| 99 | 99 | \ No newline at end of file |