Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Created May 2, 2017 06:25
Show Gist options
  • Save Mombuyish/14b3e01da9d35351a62f81b62f6c0588 to your computer and use it in GitHub Desktop.
Save Mombuyish/14b3e01da9d35351a62f81b62f6c0588 to your computer and use it in GitHub Desktop.
@extends('layouts.app')
@inject('PostPresenter', 'App\Presenters\PostPresenter')
@section('content')
<h1>All posts</h1>
@foreach($posts as $post)
<div>
<h3>{{ $post->subject }}</h3>
<p>{{ $post->description }}</p>
<p>{{ $PostPresenter->status($post->status) }}</p>
</div>
@endforeach
@stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment