@extends(view_path('master'))
@section('additional_head_tags')
@endsection
@section('top-panel')
@endsection
@section('body')
@if($posts->count())
@foreach($posts as $post)
@endforeach
{{ $posts->appends(request()->q ? ['q' => request()->q] : [])->onEachSide(1)->links() }}
{{ $posts->appends(request()->q ? ['q' => request()->q] : [])->links('vendor.pagination.simple-semantic-ui') }}
@endif
@endsection