Skip to content

Instantly share code, notes, and snippets.

@dominicmartineau
Created June 29, 2014 14:08
Show Gist options
  • Save dominicmartineau/a3f984873a510b70001a to your computer and use it in GitHub Desktop.
Save dominicmartineau/a3f984873a510b70001a to your computer and use it in GitHub Desktop.
A really simple homepage with a layout
@extends('layout')
@section('content')
<h1>Hello world!</h1>
@endsection
<html>
<body>
@yield('content')
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment