@extends('layouts.app-admin') @section('content')
SHIPMENT DETAILS ID: {{ $data['id'] }}
Booking Information

Shipment Title: {{ $data['shipment_title'] }}

Origin: {{ $data['origin'] }}

Destination: {{ $data['destination'] }}

Paid To Company: ${{ $data['booked_price'] }}


Transporter Information

Name: {{ $data['transporter']['name'] }}

Email: {{ $data['transporter']['email'] }}

Phone: {{ $data['transporter']['phone'] }}


Customer Information

Name: {{ $data['customer']['name'] }}

Email: {{ $data['customer']['email'] }}

Phone: {{ $data['customer']['phone'] }}

CANCELLATION DETAILS

Request on: {{ $data['cancellation']['auto_cancel_on'] }}

Requested by: {{ $data['cancellation']['requested_by'] }}

Reason: {{ $data['cancellation']['reason'] }}

@if (!empty($data['reply']['id'])) Reply Support @else Start Support @endif
REFUND TO CUSTOMER

Customer Name: {{ $data['customer']['name'] }}

Transaction ID: {{ $data['refund']['transaction_id'] }}

Refunded Status: {{ !($data['refund']['is_refunded']) ? 'Pending' : 'Refunded' }}

Amount: ${{ $data['refund']['amount'] }}

@if (!empty($data['refund']['coupon']))

Coupon Used: {{ $data['refund']['coupon'] }}

@endif @if (!($data['refund']['is_refunded'])) @endif
@endsection @section('extra-scripts') @endsection