Created
February 11, 2017 21:19
-
-
Save evercode1/2337f069aafc13dd111f66b71ad5f6dc to your computer and use it in GitHub Desktop.
chapter 15 lesson/index.blade.php
This file contains hidden or 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('title') | |
<title>Lessons</title> | |
@endsection | |
@section('content') | |
<ol class='breadcrumb'> | |
<li><a href='/'>Home</a></li> | |
<li class='active'>Lessons</li> | |
</ol> | |
<h2>Lessons</h2> | |
<hr/> | |
<lesson-grid></lesson-grid> | |
<div> <a href="/lesson/create"> | |
<button type="button" class="btn btn-lg btn-primary"> | |
Create New | |
</button></a> | |
</div> | |
@endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment