JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "card.blade.php"

Full Path: /home/u735268861/domains/palsarh.in/public_html/resources/views/frontend/default/blog/card.blade.php
File size: 833 bytes
MIME-type: text/html
Charset: utf-8

<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>