@extends('layouts.admin') @section('content')
| Tracking Number | Total Price | Status | Action |
|---|---|---|---|
| {{$item->tracking_no}} | ₱{{ number_format($item->orderItems->sum(function ($orderItem) { $productPrice = $orderItem->productPrice; if ($productPrice && $productPrice->is_active == 1) { return $productPrice->price; } else { return 0; } }) + ($item->delivery_option == 2 ? \App\Models\DeliveryRate::where('is_active', 1)->value('delivery_fee') : 0), 2, '.', ',') }} | @if ($item->status == '0')Pending @endif | id)}}" class="btn btn-primary"> |