@foreach(Auth::user()->orders as $index => $row)
{{ date('M', strtotime($row->tour_date)) }} {{ date('d', strtotime($row->tour_date)) }}{{ date('D', strtotime($row->created_at)) }}

{{ $row->tour_title }} {{ $row->adult_qty }} {{ __('Adults') }} / {{ $row->child_qty }} {{ __('Childs') }}

  • {{ __('Booking id') }} {{ $row->document_no }}
  • {{ __('Booked on') }} {{ date('D. d M. Y', strtotime($row->created_at)) }}
@if($row->status == App\Order::document_status_in_progress) {{ __('Edit') }} @endif {{ __('Reorder') }} @if($row->status == App\Order::document_status_in_progress) {{ __('Cancel') }} @endif @if($row->status == App\Order::document_status_approved) {{ __('Rating & Comment') }} @endif

@endforeach