@extends('front.layouts.master') @section('main_content')
@forelse($posts as $post)
img

{{ $post->title }}

{!! nl2br($post->short_description) !!}

@empty
{{ __('No posts found') }}
@endforelse
@if($posts->hasPages())
    @php $current = $posts->currentPage(); $last = $posts->lastPage(); @endphp @if(!$posts->onFirstPage())
  • @endif @for($page=1;$page<=$last;$page++) @if($page === $current)
  • {{ sprintf('%02d', $page) }}
  • @else
  • {{ sprintf('%02d', $page) }}
  • @endif @endfor @if($posts->hasMorePages())
  • @endif
@endif
@endsection