@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())
@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)
@endif
@else
@endif
@endsection