@extends('organizer.layout') @section('content')
{{ __('Booking ID') }} | {{ __('Event') }} | {{ __('Customer Name') }} | {{ __('Discount') }} | {{ __('Early Bird Discount') }} | {{ __('Quantity') }} | {{ __('Total') }} | {{ __('Name') }} | {{ __('Email') }} | {{ __('Phone') }} | {{ __('City') }} | {{ __('State') }} | {{ __('Country') }} | {{ __('Zip Code') }} | {{ __('Gateway') }} | {{ __('Payment') }} | {{ __('Date') }} | {{ __('Receipt') }} |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
#{{ $booking->booking_id }} | {{ strlen($booking->title) > 35 ? mb_substr($booking->title, 0, 35, 'utf-8') . '...' : $booking->title }} | {{ $booking->customerfname }} {{ $booking->customerlname }} | {{ $abs->base_currency_symbol_position == 'left' ? $abs->base_currency_symbol : '' }}{{ round($booking->discount, 2) }}{{ $abs->base_currency_symbol_position == 'right' ? $abs->base_currency_symbol : '' }} | {{ $abs->base_currency_symbol_position == 'left' ? $abs->base_currency_symbol : '' }}{{ round($booking->early_bird_discount, 2) }}{{ $abs->base_currency_symbol_position == 'right' ? $abs->base_currency_symbol : '' }} | {{ $booking->quantity }} | {{ $abs->base_currency_symbol_position == 'left' ? $abs->base_currency_symbol : '' }}{{ round($booking->price, 2) }}{{ $abs->base_currency_symbol_position == 'right' ? $abs->base_currency_symbol : '' }} | {{ $booking->fname }} {{ $booking->lname }} | {{ $booking->email }} | {{ $booking->phone }} | {{ $booking->city }} | {{ $booking->state }} | {{ $booking->country }} | {{ $booking->zip_code }} | {{ ucfirst($booking->paymentMethod) }} | @if ($booking->paymentStatus == 'pending') {{ __('Pending') }} @elseif ($booking->paymentStatus == 'completed') {{ __("Completed") }} @endif | {{ $booking->created_at }} | {{ __('View') }} |