@extends('layouts.master') @section('bodyclass') @endsection @section('content')
Loading...
Loading...
Loading...
@php $enmonth = Request::get('month'); $month = Carbon\Carbon::parse($enmonth); @endphp
{{ $month->monthName }} {{ $year = Request::get('year') }}

@forelse($posts as $key => $post) @include('public.post') @if (!empty($setting->between_ads)) @if( ($key + 1) % 9 == 0 )
{!! $setting->between_ads !!}
@endif @endif @empty
@lang('messages.nopost')
@endforelse
@endsection @section('extra')

{{ $posts->appends(['month' => $enmonth, 'year' => $year])->links() }}
@endsection