@extends('layouts.app') @section('content')
| Product | Qty Returned | Price | Item Total | Condition | Stock Restored |
|---|---|---|---|---|---|
| {{ $item->product->product_name }} | {{ $item->quantity_returned }} | ${{ number_format($item->selling_price, 2) }} | ${{ number_format($item->item_total, 2) }} | {{ $item->condition }} | @if($item->restore_to_stock) Yes @else No @endif |