@extends('front.layout.app') @section('beforeHeadClose') @endsection @section('content') @php echo cms_edit_page("blog");@endphp {!! cms_page_heading('Blog') !!}
@if (count($blogData) > 0) @foreach ($blogData as $blogsValues)
@if (!empty($blogsValues['featured_img']) && file_exists(storage_uploads('blog/' . $blogsValues['featured_img']))) {{ $blogsValues['featured_img_alt'] }} @else {{ $blogsValues['featured_img_alt'] }} @endif
  • {{ date('M d, Y ', strtotime($blogsValues['dated'])) }}
  • {{ $blogsValues->category?->cate_title ?? 'No category' }}

{{ Str::words($blogsValues['title'], 9, '...') }}

@endforeach
@else

No Record Found

@endif
@endsection