@extends('layout.default')
@section('title')
{{ $user->username }} {{ __('user.posts') }} - {{ config('other.title') }}
@endsection
@section('breadcrumbs')
{{ $user->username }}
{{ __('user.posts') }}
@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)
-
@endforeach
{{ $posts->links('partials.pagination') }}
@else
{{ __('user.private-profile') }}
{{ __('user.not-authorized') }}
@endif
@endsection