@extends('backend.layout') @section('content')
{{ __('Profile Picture') }}
image
{{ __('Customer Information') }}
{{ __('Name') . ' :' }}
{{ $userInfo->first_name . ' ' . $userInfo->last_name }}
{{ __('Username') . ' :' }}
{{ $userInfo->username }}
{{ __('Email') . ' :' }}
{{ $userInfo->email }}
{{ __('Phone') . ' :' }}
{{ $userInfo->contact_number }}
{{ __('Address') . ' :' }}
{{ $userInfo->address }}
{{ __('City') . ' :' }}
{{ $userInfo->city }}
{{ __('State') . ' :' }}
{{ $userInfo->state }}
{{ __('Country') . ' :' }}
{{ $userInfo->country }}

{{ __('All Equipment Bookings') }}

@if (count($bookings) == 0)

{{ __('NO BOOKING FOUND') . '!' }}

@else
@if ($basicData->self_pickup_status == 1 || $basicData->two_way_delivery_status == 1) @endif @foreach ($bookings as $booking) @if ($basicData->self_pickup_status == 1 || $basicData->two_way_delivery_status == 1) @endif @includeIf('backend.instrument.booking.show-message') @includeIf('backend.instrument.booking.show-receipt') @endforeach
{{ __('Booking No.') }} {{ __('Title') }} {{ __('Price') }} {{ __('Payment Status') }}{{ __('Shipping Type') }}{{ __('Shipping Status') }} {{ __('Actions') }}
{{ '#' . $booking->booking_number }} {{ strlen($booking->equipmentTitle) > 20 ? mb_substr($booking->equipmentTitle, 0, 20, 'UTF-8') . '...' : $booking->equipmentTitle }} @if (is_null($booking->booking_type)) {{ $booking->currency_symbol_position == 'left' ? $booking->currency_symbol : '' }}{{ $booking->grand_total }}{{ $booking->currency_symbol_position == 'right' ? $booking->currency_symbol : '' }} @else {{ __('Requested') }} @endif @if ($booking->gateway_type == 'online')

{{ __('Completed') }}

@else
@csrf
@endif
{{ ucwords($booking->shipping_method) }}
@csrf
@endif
@endsection