@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']))) @else @endif {{ date('M d, Y', strtotime($blogsValues['dated'])) }} {!! $blogsValues['title'] !!} {{ Str::limit(strip_tags($blogsValues['description']), 180, '...') }} Read More @endforeach @endif @endsection
{{ Str::limit(strip_tags($blogsValues['description']), 180, '...') }}