@extends('user_layout.app') @section('content')

Our Blog

@forelse($blogs as $blog)
@if($blog->image) @endif
{{ $blog->title }}

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

Read More
@empty

No blogs available.

@endforelse
{{ $blogs->links() }}
@endsection