@extends('layouts.app-admin') @section('content')
Accepted {{ $data['type'] }} Price

${{ number_format($data['booked_price'], 2) }}

{{ $data['type'] }} Accepted
Shipment Booked

Estimated pickup: {{ date('M d, Y', strtotime(now())) }}

Shipment Details #{{ $data['id'] }}

Vehicle Information

{{ $data['shipment_title'] }}

Pickup

{{ $data['origin'] }}

Delivery

{{ $data['destination'] }}

Customer Information
Name
{{ $data['customer']['name'] }}
Email
{{ $data['customer']['email'] }}
Phone
{{ $data['customer']['phone'] }}
Payment Summary
Service Provider Payable
${{ number_format($data['booked_price'], 2) }}
Company Fee
-${{ $data['company_fee'] }}
Total Amount That Will Pay To Transporter
${{ number_format($data['booked_price'], 2) }}
Bids Overview
@foreach($data['bids'] as $bid) @endforeach
Amount Service Provider Service Type Bid Date Status
$ {{ $bid['amount'] }}
{{ $bid['service_provider'] }}
{{ $bid['service_type'] }} {{ $bid['bid_date'] }} {{ $bid['status'] }}
@endsection