@extends('layouts.admin') @section('title', 'Invoices for ' . $user->name) @section('content')

Invoices for {{ $user->name }}

@foreach($shipments as $shipment) @endforeach
Tracking # Receiver Final Price (£) Created Actions
{{ $shipment->tracking_number }} {{ $shipment->receiver_name }} £{{ number_format($shipment->final_price, 2) }} {{ $shipment->created_at->format('d M, Y') }} View
@endsection