Files
freeu-project/resources/views/Frontend/lates_news.blade.php
Ritikesh yadav c661166e1d first commit
2024-03-28 14:52:40 +05:30

24 lines
1.0 KiB
PHP

<div class="Latest_news">
<div class="container">
<h2 class="news-txt" data-aos="fade-down">Latest News & Insights</h2>
<div class="row">
@php($blogs = latestBlog())
@foreach($blogs as $blog)
<div class="col-md-4 insights">
<div class="insight-card" style="background:white" >
<img src="{{ $blog->blog_image }}" />
<h2>{{ Str::limit($blog->blog_title, 50) }}</h2>
<span class='h-100'>
<i class="fa fa-calendar-minus-o" aria-hidden="true"></i>
{{ $blog->created_at->format('F jS, Y') }}
</span>
<p>{!! Str::limit($blog->blog_description, 200) !!}</p>
<!--<div>-->
<a href="{{ route('readmore', ['slug' => $blog->slug]) }}">Read More</a>
<!--</div>-->
</div>
</div>
@endforeach
</div>
</div>
</div>