@extends('frontEnd.layouts.master') @section('title', 'Blog') @section('content')

Our Blogs

@foreach ($blogs as $key => $value)

{{ $value->created_at->format('M d, Y') }}

{{ Str::limit($value->title, 50) }}

{!! Str::limit(strip_tags($value->description), 100) !!}
@endforeach
@endsection @push('css') @endpush