{{-- Title --}}
{{ $meetingPackage->title }} {{ trans('update.n_sessions', ['count' => $meetingPackage->sessions]) }} ({{ convertMinutesToHourAndMinute($meetingPackage->session_duration) }} {{ trans('home.hours') }})
{{-- Duration --}} {{ $meetingPackage->duration }} {{ trans("update.{$meetingPackage->duration_type}") }} {{-- Price --}} @if(empty($meetingPackage->price) or $meetingPackage->price <=0) {{ trans('update.free') }} @else @php $packagePrices = $meetingPackage->getPrices(); @endphp
{{ !empty($packagePrices['price']) ? handlePrice($packagePrices['price']) : trans('update.free') }} @if($meetingPackage->discount > 0) {{ !empty($packagePrices['real_price']) ? handlePrice($packagePrices['real_price']) : trans('update.free') }} @endif
@endif {{-- Sales --}} @if($meetingPackage->sales->count() > 0)
{{ $meetingPackage->sales->count() }} {{ handlePrice($meetingPackage->sales->sum("paid_amount")) }}
@else - @endif {{-- Status --}} @if($meetingPackage->enable)
{{ trans('panel.active') }}
@else
{{ trans('public.disabled') }}
@endif {{-- Actions --}}