@extends('backend.layout') @section('content')
{{ __('Booking No.') }} | {{ __('Title') }} | {{ __('Price') }} | {{ __('Payment Status') }} | @if ($basicData->self_pickup_status == 1 || $basicData->two_way_delivery_status == 1){{ __('Shipping Type') }} | @endif{{ __('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 @endif |
@if ($basicData->self_pickup_status == 1 || $basicData->two_way_delivery_status == 1)
{{ ucwords($booking->shipping_method) }} | @endif
|