@extends('layouts.admin') @section('content')

Pending Orders

@foreach ($order as $item) @if ($item->status == '0') @endforeach
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, '.', ',') }} Pending @endif id)}}" class="btn btn-primary">
@endsection