@extends('frontend.layouts.main') @section('main-container') Blog Home Blog @foreach($blogs as $blog) {{ $blog->title }} {{ $blog->short_description }} {{ $blog->author_name }} {{ Carbon\Carbon::parse($blog->created_at)->format('F d Y') }} @endforeach @if ($blogs->currentPage() > 1) « Previous @endif @for ($i = max(1, $blogs->currentPage() - 2); $i <= min($blogs->currentPage() + 2, $blogs->lastPage()); $i++) {{ $i }} @endfor @if ($blogs->currentPage() < $blogs->lastPage()) Next » @endif @endsection
{{ $blog->short_description }}