Skip to content

Commit d258a29

Browse files
committedJul 31, 2017
added docs for the switch balde directives
1 parent 8faed7c commit d258a29

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
 

‎blade.md

+21
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- [Blade & JavaScript Frameworks](#blade-and-javascript-frameworks)
1010
- [Control Structures](#control-structures)
1111
- [If Statements](#if-statements)
12+
- [Switch Statement](#switch-statement)
1213
- [Loops](#loops)
1314
- [The Loop Variable](#the-loop-variable)
1415
- [Comments](#comments)
@@ -209,6 +210,26 @@ In addition to the conditional directives already discussed, the `@isset` and `@
209210
// $records is "empty"...
210211
@endempty
211212

213+
<a name="switch-statement"></a>
214+
### Switch Statement
215+
216+
The Switch statement can be constructed using the `@switch`, `@case`, `@break`, `@default` and `@endswitch` directives.
217+
218+
@switch($i)
219+
220+
@case(1)
221+
This is the first case
222+
@break
223+
224+
@case(2)
225+
This is the second case
226+
@break
227+
228+
@default
229+
Default to the rescue
230+
231+
@endswitch
232+
212233
<a name="loops"></a>
213234
### Loops
214235

0 commit comments

Comments
 (0)
Please sign in to comment.