@extends('dashboards.vendor.index') @section('content')

Product Return

Product Return Report

{{--
--}} {{--
    --}} {{-- --}}{{--
  • Account:0000 12345 678900
  • --}} {{--
  • Date:June 5, 2026
  • --}} {{--
--}} {{--
--}}
@foreach($vendorProductReturns as $pro) @php $status = App\Models\ProductReturn::where('order_detail_id',$pro->order_detail_id)->first()->status; @endphp @endforeach
Order # Product Product Vendor Buyer Buyer Stripe Transaction # Price Quantity Reason Admin Status
{{$pro->orderDetail->order_id}} {{$pro->product->name}} {{$pro->product->user->name}} {{$pro->orderDetail->order->user->name}} {{$pro->orderDetail->order->transaction_id}} ${{$pro->price}} {{$pro->quantity}} {{$pro->reason}}{{$status}}
{{--
    --}} {{--
  • Payment Info:
  • --}} {{--
  • --}} {{-- Account: 1234567890
    --}} {{-- A/C Name:
    --}} {{-- Bank Details: Add your details--}} {{--
  • --}} {{--
--}} {{--
    --}} {{--
  • SUB TOTAL:
  • --}} {{--
  • DISCOUNT:
  • --}} {{--
--}}
  • TOTAL : $ {{$totalPrice}}
@endsection