@extends('admin.admin') @section('content')
Payment Method: {{ $order->payment_method }}
| # | Item | Price | Quantity | Totals |
|---|---|---|---|---|
| {{ $sl + 1 }} |
{{ $item->product->name }}
@if ($item->size_id != '') Size: {{ $item->size->name }} @else Size: NA @endif @if ($item->color_id != '') Color: {{ $item->color->name }} @else Color: NA @endif |
{{ $item->price }} | {{ $item->quantity }} | @php $price = $item->price; $quantity = $item->quantity; $productPrice = $price * $quantity; $subtotal += $productPrice; @endphp{{ $productPrice }} |