@extends('admin.layouts.app') @section('content')

{{ $pageTitle }}

{{ trans('update.order') }} #{{ $order->id }}

@foreach($orderItems as $item) @endforeach
{{ trans('public.item') }} {{ trans('public.type') }} {{ trans('public.amount') }}
@if(!empty($item->reserve_meeting_id) && !empty($item->reserveMeeting) && !empty($item->reserveMeeting->meeting) && !empty($item->reserveMeeting->meeting->creator)) {{ $item->reserveMeeting->meeting->creator->full_name }} @elseif(!empty($item->webinar)) {{ $item->webinar->title }} @elseif(!empty($item->product)) {{ $item->product->title }} @elseif(!empty($item->bundle)) {{ $item->bundle->title }} @elseif(!empty($item->subscribe)) {{ $item->subscribe->title }} @elseif(!empty($item->promotion)) {{ trans('update.promotion') }} @elseif(!empty($item->registrationPackage)) {{ trans('update.registration_package') }} @else - @endif @if(!empty($item->reserve_meeting_id)) {{ trans('update.meeting_reservation') }} @elseif(!empty($item->webinar)) {{ trans('panel.webinar') }} @elseif(!empty($item->product)) {{ trans('update.product') }} @elseif(!empty($item->bundle)) {{ trans('update.bundle') }} @elseif(!empty($item->subscribe)) {{ trans('update.subscription_package') }} @elseif(!empty($item->promotion)) {{ trans('update.promotion_plan') }} @elseif(!empty($item->registrationPackage)) {{ trans('update.registration_package') }} @else - @endif {{ handlePrice($item->total_amount) }}
@endsection