@extends('front.layout.app') @section('beforeHeadClose') @endsection @section('content') @php echo cms_edit_page("blog");@endphp

Our Blog

All @foreach ($blog_categories as $blog_catValues) {{ $blog_catValues->cate_title }} @endforeach
@if (count($blogData) > 0) @foreach ($blogData as $blogsValues) @php // Get category names for this blog post $postCateIds = explode(',', $blogsValues->cate_ids); $postCategories = $blog_categories->whereIn('id', $postCateIds); $firstCategory = $postCategories->first(); $categoryNames = $postCategories->pluck('cate_title')->implode(', '); @endphp
@endforeach @else

No Record Found

@endif
@if($blogData->hasPages()) @endif
@endsection