@extends('frontend.master', ['activePage' => 'checkout']) @section('title', __('Checkout')) @section('content') {{-- content --}}
{{-- scroll --}}
@csrf @php $price = $data->price + $data->tax_total; if ($data->currency_code == 'USD' || $data->currency_code == 'EUR' || $data->currency_code == 'INR') { $price = $price * 100; } @endphp

{{ $data->event->name }}

{{ __('Date') }}

{{ Carbon\Carbon::parse($data->event->start_time)->format('d M Y') }} - {{ Carbon\Carbon::parse($data->event->end_time)->format('d M Y') }}

{{ __('Location') }}

{{ $data->event->address }}

@if ($data->allday == 0)
@if ($errors->has('ticket_date'))
{{ $errors->first('ticket_date') }}
@endif
@endif
@if ($data->type == 'paid')

{{ __('Paid') }}

@else

{{ __('Free') }}

@endif @if ($data->type == 'paid')

{{ $data->currency . $data->price }}

@endif @if ($data->seatmap_id == null || $data->module->is_enable == 0)

{{ __('Quantity') }}

@endif
@if ($data->seatmap_id != null && $data->module->is_install == 1 && $data->module->is_enable == 1) @include('seatmap::seatmapView', [ 'seat_map' => $data->seat_map, 'rows' => $data->rows, 'seatsByRow' => $data->seatsByRow, 'seatLimit' => $data->ticket_per_order, ]) @endif @if ($data->available_qty > 0)

{{ __('Payment Methods') }}