Files
linguist/samples/Blade/hello.blade.php
2016-07-07 13:41:34 +01:00

20 lines
308 B
PHP

<!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>
</body>
</html>