@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | { |
| 47 | 47 | $sound = SoundServices::getBlankSound(); |
| 48 | 48 | |
| 49 | - return view('pages.sounds.create', ['sound' => $sound]); |
|
| 49 | + return view('pages.sounds.create', [ 'sound' => $sound ]); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | { |
| 78 | 78 | $sound = SoundServices::getSound($id); |
| 79 | 79 | |
| 80 | - return view('pages.sounds.show', ['sound' => $sound]); |
|
| 80 | + return view('pages.sounds.show', [ 'sound' => $sound ]); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | { |
| 92 | 92 | $sound = SoundServices::getSound($id); |
| 93 | 93 | |
| 94 | - return view('pages.sounds.edit', ['sound' => $sound]); |
|
| 94 | + return view('pages.sounds.edit', [ 'sound' => $sound ]); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |