@extends('front.themes.' . env('THEME', 'theme-01') . '.layout') @section('content')
@foreach($blogs as $blogg)

{{date('d', strtotime($blogg->created_at))}}

{{date('M', strtotime($blogg->created_at))}}

{{mb_strlen($blogg->title,'utf-8') > 50 ? mb_substr($blogg->title,0,50,'utf-8')."...":$blogg->title}}

@php $blog_details = substr(strip_tags($blogg->details),0,120); @endphp {!! html_entity_decode($blog_details)!!}

{{ __("Read More") }}
@endforeach
{!! $blogs->links() !!}
@endsection @section('scripts') @endsection