@extends('front.layout.app') @section('beforeHeadClose') @endsection @section('content') @php echo cms_edit_page("blog");@endphp
@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['title'] !!}

{{ Str::limit(strip_tags($blogsValues['description']), 180, '...') }}

Read More
@endforeach @endif
@endsection