@extends('default') @section('title', $user->username . ' Threads') @section('breadcrumb') Home > Users > {{ $user->username }} > Threads @endsection @section('content') {!! $paginator !!} @foreach($threads as $key => $thread) @include('partial/thread') @endforeach {!! $paginator !!} @endsection @section('scripts') @endsection