Last active
February 15, 2017 15:09
-
-
Save Mombuyish/57d606283a309baab63f2407b09001aa to your computer and use it in GitHub Desktop.
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.app') | |
@section('content') | |
<h1> | |
All Collections | |
</h1> | |
<ol> | |
@foreach($collections as $collection) | |
<li> | |
{{ $collection->name }} | |
</li> | |
@endforeach | |
</ol> | |
@include('posts.all') | |
@stop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment