@include(getTemplate() . '.includes.webinar.rate',['rate' => $webinar->getRate()])
{{ convertMinutesToHourAndMinute($webinar->duration) }} {{ trans('home.hours') }}
{{ dateTimeFormat(!empty($webinar->start_date) ? $webinar->start_date : $webinar->created_at,'j M Y') }}
@if(!empty($webinar->price) and $webinar->price > 0)
@if($webinar->bestTicket() < $webinar->price)
{{ handlePrice($webinar->price, true, true, false, null, true) }}
{{ handlePrice($webinar->bestTicket(), true, true, false, null, true) }}
@else
{{ handlePrice($webinar->price, true, true, false, null, true) }}
@endif
@else
{{ trans('public.free') }}
@endif