@php $price = (!empty($instructor->meeting)) ? $instructor->meeting->amount : 0; $discount = (!empty($price) and !empty($instructor->meeting) and !empty($instructor->meeting->discount) and $instructor->meeting->discount > 0) ? $instructor->meeting->discount : 0; @endphp
{{ $instructor->full_name }}

{{ $instructor->full_name }}

{{ $instructor->bio }} @if(!empty($instructor->occupations))
@foreach($instructor->occupations as $occupation) @if(!empty($occupation->category)) {{ $occupation->category->title }}{{ !($loop->last) ? ', ' : '' }} @endif @endforeach
@endif

{{ truncate($instructor->about, 200) }}

@if(!empty($discount)) {{ trans('public.offer',['off' => $discount]) }} @endif
@if(!empty($instructor->meeting) and !empty($instructor->meeting->meetingTimes) and count($instructor->meeting->meetingTimes)) @if(!empty($price) and $price > 0)
{{ handlePrice(!empty($discount) ? ($price - ($price * $discount / 100)) : $price) }} @if(!empty($discount)) {{ handlePrice($price) }} @endif
/{{ trans('update.hour') }} @else {{ trans('public.free') }} @endif @else {{ trans('update.not_available_for_meeting') }} @endif
@include('web.default.includes.webinar.rate',['rate' => $instructor->rates()])
{{ $instructor->getTotalHoursTutoring() }} {{ trans('update.hours_tutoring') }}
@foreach($instructor->getBadges() as $badge)
{{ !empty($badge->badge_id) ? $badge->badge->title : $badge->title }}
@endforeach