@extends('frontend.layouts.app') @section('title', 'Blogs - I Am Happy Healthcare Platform') @section('content')

Blogs

@if ($blogs->count())
@foreach ($blogs as $blog)
@if ($blog->image) {{ $blog->title }} @else
No Image Available
@endif

{{ $blog->title }}

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

@endforeach
@else
No blogs available right now.
@endif
@endsection