@extends('layouts.master') @section('title') {{ $tag }} @stop @section('content')
@include('partials/_tags')
@foreach(array_chunk($blogs->all(), 3) as $row)
@foreach($row as $blog) @include('partials/_blog') @endforeach
@endforeach {{ $blogs->links() }}
@stop