@extends('master') @section('title') Articles « Jonny Barnes @stop @section('content') @if (count($data) == 0)

No articles exist for this time.

@endif @foreach ($data as $article) @if ($article['url'] != '')
@else
@endif

{{ $article['title'] }}

{!! $article['main'] !!}
@endforeach {!! $data->render() !!} @stop @section('scripts') @stop