@extends('layouts.main') @section('content')
Category: {{ $category->name }} ({{ $category->articles_count }})

@foreach($category->articles as $article)
{{ $article->title }}

{{ $article->short_text }}

Read more...
@endforeach {{ $articles->links('partials.pagination') }}
@endsection