{{ $instructor->full_name }}
{{ $instructor->full_name }} {{ trans('update.mentor') }}
{{-- Hourly Charge --}}
{{ trans('update.hourly_charge') }}
@if(!empty($meeting->amount) and $meeting->amount > 0) @if(!empty($meeting->discount)) {{ handlePrice($meeting->amount, true, true, false, null, true) }} {{ handlePrice($meeting->amount - (($meeting->amount * $meeting->discount) / 100), true, true, false, null, true) }} @else {{ handlePrice($meeting->amount, true, true, false, null, true) }} @endif @else {{ trans('public.free') }} @endif
{{-- In Person Charge --}}
{{ trans('update.in_person_charge') }}
@if(!empty($meeting->in_person_amount) and $meeting->in_person_amount > 0) @if(!empty($meeting->discount)) {{ handlePrice($meeting->in_person_amount, true, true, false, null, true) }} {{ handlePrice($meeting->in_person_amount - (($meeting->in_person_amount * $meeting->discount) / 100), true, true, false, null, true) }} @else {{ handlePrice($meeting->in_person_amount, true, true, false, null, true) }} @endif @else {{ trans('public.free') }} @endif
{{-- Group Meeting Charge --}}
{{ trans('update.group_meeting_charge') }}
@if(!empty($meeting->min_group_amount) and $meeting->min_group_amount > 0) @if(!empty($meeting->discount)) {{ handlePrice($meeting->min_group_amount, true, true, false, null, true) }} {{ handlePrice($meeting->min_group_amount - (($meeting->min_group_amount * $meeting->discount) / 100), true, true, false, null, true) }} @else {{ handlePrice($meeting->min_group_amount, true, true, false, null, true) }} @endif @else {{ trans('public.free') }} @endif /{{ trans('update.seat') }}