@extends('design_1.web.layouts.app') @push("styles_top") @endpush @section('content')

{{ trans('update.event_ticket_details') }}

{{ trans('update.view_full_details_of_the_event_ticket') }}

{{ $event->title }}

{{ $event->title }}

{{ trans('public.by') }} {{ $event->creator->full_name }}
@if($showQrCode and !empty($qrCode))
{!! $qrCode !!}
@endif
{{ $purchasedTicket->code }}
{{-- Ticket Type --}}
{{ trans('update.ticket_type') }} {{ $purchasedTicket->eventTicket->title }}
{{-- Holder --}}
{{ trans('update.holder') }} {{ $event->creator->full_name }}
{{-- Paid Amount --}}
{{ trans('public.paid_amount') }} {{ ($purchasedTicket->paid_amount > 0) ? handlePrice($purchasedTicket->paid_amount) : trans('update.free') }}
{{-- Purchase Date --}}
{{ trans('update.purchase_date') }} {{ dateTimeFormat($purchasedTicket->paid_at, 'j M Y H:i') }}
{{-- Event Type --}}
{{ trans('update.event_type') }} {{ trans("update.{$event->type}") }}
{{-- Event Date --}}
{{ trans('update.event_date') }} {{ !empty($event->start_date) ? dateTimeFormat($event->start_date, 'j M Y H:i') : '-' }}
@if($event->type == "in_person" and !empty($event->specificLocation)) @php $specificLocationTitle = $event->specificLocation->getFullAddress(false, true, true, false, false) @endphp
{{ trans('update.location') }} {{ $specificLocationTitle }}
@endif
{{-- Print --}}
{{ trans('update.print_ticket') }}
@endsection @push('scripts_bottom') @endpush