@php if (isset($invoicetype)) { if ($invoicetype == 'create') { $href = route('invoices.create', $invoice->user); } if ($invoicetype == 'edit') { $href = route('invoices.edit', $invoice); } } else { $href = route('orders.resolve', $order); } @endphp
@if (isset($product) && $product != null)
{{ $product->name }}
{{ $product->unit->name }}
STOCK {{ $product->stock }}
@else
Product name?
Pack Size?
STOCK ??
@endif
@if ($invoice->status == 'returnpending' || $invoice->status == 'returned')
Product Condition
@error('status')
{{ $message }}
@enderror
@endif