Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Last active February 15, 2017 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mombuyish/57d606283a309baab63f2407b09001aa to your computer and use it in GitHub Desktop.
Save Mombuyish/57d606283a309baab63f2407b09001aa to your computer and use it in GitHub Desktop.
@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