@extends('frontend::layouts.app') @section('title', $metaTags['metaTitle']) @section('description', $metaTags['metaDescription']) @section('keywords', $metaTags['metaKeywords']) @section('other_meta_tags') {!! $metaTags['otherMetaTags'] !!} @endsection @section('content')
@if ($blogs->isNotEmpty())
{{ $pageBanner['name'] }}
@endif
@if ($blogs->isNotEmpty())

Blogs & Updates

@php $chunkSize = $blogs->count() == 1 ? 1 : 2; @endphp @foreach ($blogs->chunk($chunkSize) as $index => $chunk)
@foreach ($chunk as $innerIndex => $blog) @endforeach
@endforeach
@if ($blogs->lastPage() > 1)
  • @for ($i = 1; $i <= $blogs->lastPage(); $i++)
  • {{ $i }}
  • @endfor
@endif @else
no result found
Oops! No Results Found
Back to Blogs
@endif
@endsection