@php
$canReserve = false;
if(!empty($instructor->meeting) and !$instructor->meeting->disabled and !empty($instructor->meeting->meetingTimes) and $instructor->meeting->meeting_times_count > 0) {
$canReserve = true;
}
@endphp
@if(!empty($instructor->meeting) and $instructor->meeting->disabled)
{{ trans('public.unavailable') }}
@elseif(!empty($instructor->meeting) and !empty($instructor->meeting->discount))
{{ $instructor->meeting->discount }}% {{ trans('public.off') }}
@endif
@if($instructor->offline)
@elseif($instructor->verified)
@endif
{{ $instructor->full_name }}
@if(!empty($instructor->bio))
{{ $instructor->bio }}
@endif
@include('web.default.includes.webinar.rate',['rate' => $instructor->rates()])
@foreach($instructor->getBadges() as $badge)
@endforeach
@if(!empty($instructor->meeting) and !$instructor->meeting->disabled and !empty($instructor->meeting->amount))
@if(!empty($instructor->meeting->discount))
{{ handlePrice($instructor->meeting->amount - (($instructor->meeting->amount * $instructor->meeting->discount) / 100)) }}
{{ handlePrice($instructor->meeting->amount) }}
@else
{{ handlePrice($instructor->meeting->amount) }}
@endif
@else
@endif