@extends('layouts.admin') @section('title', 'Branch Order Details') @section('content')
{{ $branch->name }} order details, customer, store, driver, and branch earnings.
| Item | Qty | Total |
|---|---|---|
| {{ $item['name'] ?? $item['item_name'] ?? 'Item' }} | {{ $item['quantity'] ?? $item['qty'] ?? 1 }} | {{ number_format((float) ($item['total'] ?? $item['price'] ?? 0), 2) }} |