@extends("frontend.layouts.app") @section("title") {{ app_name() }} | Blogs @endsection @section("content")

Insights & Tips

Latest Blogs and Updates

@if($blogs->total() > 0)
@foreach($blogs as $blog)
{{ $blog->title ?? 'Blog image' }}

{{ $blog->title }}

@php $content = strip_tags($blog->content); $limitedContent = strlen($content) > 120 ? substr($content, 0, 120) . '...' : $content; @endphp {{ $limitedContent }}

Read more...

{{ date('F d, Y', strtotime($blog->published_at)) }}

@endforeach
{{ $blogs->links() }}
@else
No Blog Found!
@endif
@endsection