Last active
December 30, 2015 18:14
-
-
Save pinscript/08a834e21bae79da35b3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>App Name</title> | |
</head> | |
<body> | |
<h1>App</h1> | |
<em>Header</em> | |
<div class="container"> | |
@yield('content') | |
</div> | |
<hr /> | |
<em>Footer</em> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('layouts/master') | |
@section('content') | |
Welcome | |
@endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment