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

No articles exist for this time.

@endif @foreach ($articles as $article) @include('templates.article', ['article' => $article]) @endforeach {{ $articles->links() }} @stop