Files
linguist/samples/Blade/hello.blade
James Brooks a1b236ddfa Update samples
2016-07-11 11:22:22 +01:00

22 lines
334 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>@yield('title', 'We love GitHub')</title>
@stack('scripts')
@stack('styles')
</head>
<body>
@include('partials.nav')
@yield('content')
<ul>
@foreach($foo as $bar)
<li>{{ $bar }}</li>
@endforeach
</ul>
{!! $raw_content !!}
</body>
</html>