{{ truncate($event->title, 46) }}
@include("design_1.web.components.rate", [
'rate' => round($event->getRate(), 1),
'rateCount' => $event->reviews()->where('status', 'active')->count(),
'rateClassName' => 'mt-8',
])
{{-- Stats --}}
@include("design_1.panel.events.my_events.event_card.stats")
{{-- End Stats --}}
@include("design_1.panel.events.my_events.event_card.progress_and_chart")
{{-- Price --}}
@php
$getMinAndMaxPrice = $event->getMinAndMaxPrice();
@endphp
@if($getMinAndMaxPrice['min'] == $getMinAndMaxPrice['max'])
{{ ($getMinAndMaxPrice['min'] > 0) ? handlePrice($getMinAndMaxPrice['min'], true, true, false, null, true) : trans('update.free') }}
@else
{{ ($getMinAndMaxPrice['min'] > 0) ? handlePrice($getMinAndMaxPrice['min'], true, true, false, null, true) : trans('update.free') }}
-
{{ ($getMinAndMaxPrice['max'] > 0) ? handlePrice($getMinAndMaxPrice['max'], true, true, false, null, true) : trans('update.free') }}
@endif