{{-- Image --}}
{{-- Badges On Image --}} @include("design_1.panel.events.my_events.event_card.badges") @if($event->type == "in_person")
@else
@endif
{{-- Content --}}

{{ 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 --}}
{{-- Progress & Price --}}
@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
{{-- Actions Dropdown (positioned outside the link) --}}
@include("design_1.panel.events.my_events.event_card.actions_dropdown")