@extends('frontend.layouts.user.master') @section('title', 'Refund Request') @section('content')

Refund Request

@csrf
@if ($errors->has('subject'))

{{ $errors->first('subject') }}

@endif
Refundable Order Products
  • Product Name
    Qty
    Price
  • @foreach ($order->orderDetails as $orderDetail) @php $product = $orderDetail->product; @endphp @if ($product->is_refundable)
  • {{--
    Ecommerce
    --}}
    {{ $product->name }}
    {{-- .98 / lb --}}
    {{ $orderDetail->quantity}}
    £{{ $orderDetail->price }}
  • @endif @endforeach
@endsection