@extends('layout.default') @section('title') {{ $user->username }} {{ __('user.posts') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('nav-tabs') @include('user.buttons.user') @endsection @section('main') @if (auth()->user()->isAllowed($user, 'forum', 'show_post'))

{{ __('forum.posts') }}

    @foreach ($posts as $post)
  1. @endforeach
{{ $posts->links('partials.pagination') }}
@else

{{ __('user.private-profile') }}

{{ __('user.not-authorized') }}
@endif @endsection