@extends('default') @section('title', $user->username . ' Posts') @section('breadcrumb') Home > Users > {{ $user->username }} > Posts @endsection @section('content') {!! $paginator !!} @foreach($posts as $post) @include('partial/post') @endforeach {!! $paginator !!} @endsection @section('scripts') @endsection