@extends('frontend.layout.app') @section('content')

Blog

@forelse($blogs as $blog)

{{ \Illuminate\Support\Str::limit(strip_tags($blog->content), 80) }}

{{ \Illuminate\Support\Carbon::parse($blog->created_at)->format('F d, Y') }} Read More
@empty
No blogs found.
@endforelse
@endsection