Popular Rituals
Aarti, Abhishekam and Prasad Rituals that purify Body, Mind and Soul
@foreach ($popularrituals as $popularritualsdata)
@php
$fullUrl = env('DASHBOARD_URL') . $popularritualsdata->image;
$data = @file_get_contents($fullUrl);
if ($data !== false) {
$type = pathinfo($fullUrl, PATHINFO_EXTENSION);
$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
} else {
$base64 = '';
}
@endphp
@endforeach
@include('common.footer')