Skip to content

Blade Syntax Cheat Sheet

bminer edited this page Jun 7, 2012 · 7 revisions

Blade Syntax Cheat Sheet

Tags

Blade

html
  head
    title Hello
  body
    h1 Hello, world!

HTML

<html>
  <head>
    <title>Hello</title>
  </head>
  <body>
    <h1>Hello, world!</h1>
  </body>
</html>

Blade

h1#header.center Hello, world!
h2.sub-header.center(style="display: none") Hello, nobody!

HTML

<h1 id="header" class="center">Hello, world!</h1>
<h2 style="display: none" class="sub-header center">Hello, nobody!</h2>

More examples coming soon...

Clone this wiki locally