@include("design_1.web.components.rate", [
'rate' => round($webinar->getRate(),1),
'rateCount' => $webinar->reviews()->where('status', 'active')->count(),
'rateClassName' => 'mt-12',
])
@if($webinar->price > 0)
@if($webinar->bestTicket() < $webinar->price)
{{ handlePrice($webinar->bestTicket(), true, true, false, null, true) }}
{{ handlePrice($webinar->price, true, true, false, null, true) }}
@else
{{ handlePrice($webinar->price, true, true, false, null, true) }}
@endif
@else
{{ trans('public.free') }}
@endif
{{ convertMinutesToHourAndMinute($webinar->duration) }} {{ trans('home.hours') }}