web-kursus2/resources/views/frontend/default/blog/card.blade.php
2025-10-30 14:17:23 +07:00

19 lines
833 B
PHP

<div class="Ecard card b-card">
<div class="card-head">
<img src="{{ get_image($blog->thumbnail) }}" alt="blog-thumbnail">
<span>{{ get_blog_category_name($blog->category_id) }}</span>
</div>
<div class="card-body">
<h4 class="ellipsis-2">{{ ucfirst($blog->title) }}</h4>
<div class="description ellipsis-line-2 mt-3">
{{ ellipsis(strip_tags($blog->description), 160) }}
</div>
<div class="b_bottom d-flex justify-content-between">
<a href="{{ route('blog.details', $blog->slug) }}"
class="read-text mt-0 stretched-link">{{ get_phrase('Read More') }}<i
class="fa-solid fa-arrow-right-long ms-2"></i></a>
<span>{{ date('d M, Y', strtotime($blog->created_at)) }}</span>
</div>
</div>
</div>