@extends('layouts.seller') @section('content') @if(Auth::user()->role_as == 10)
| Tracking Number | Total Price | Status | Action |
|---|---|---|---|
| {{$item->tracking_no}} | ₱{{ number_format( $item->orderItems->sum(function ($orderItem) { $productPrice = $orderItem->product->productPrices() ->where('is_active', 1) ->where('created_at', '<', $orderItem->created_at) ->orderBy('created_at', 'desc') ->value('price'); return $productPrice ? $productPrice * $orderItem->qty : 0; }) + ($item->delivery_option == 2 ? 0 : 0), 2, '.', ',') }} | @if ($item->status == '0') Pending @endif | id)}}" class="btn btn-primary">View |