@extends('admin.layouts.container') @section('content')

{{ $head ?? '' }}

@method('PUT') @csrf

{{__('refunds.details')}}


{{$refund->uuid}}

{{$refund->order_id}}

{{$refund->date}}

{{$refund->note}}

@if($refund->image)
@endif

{{__('refunds.payment_info')}}


{{$refund->card->card ?? '-'}}

{{$refund->card->year ?? '-'}}

{{$refund->card->month ?? '-'}}


{{__('refunds.user_info')}}


{{$refund->order->user->name ?? ''}}

{{$refund->order->user->email ?? ''}}

{{$refund->order->user->phone ?? ''}}

{{__('refunds.products')}}


{{ $refund->orderProduct->product->currentDescription->title }} {{$refund->orderProduct->option_id ? (' - '.$refund->orderProduct->option->currentDescription->title ) : '' }}

{{ $refund->orderProduct->product->category->currentDescription->title }}

{{ $refund->orderProduct->product->subCategory->currentDescription->title }}

{{ $refund->orderProduct->product->brand->currentDescription->title }}

{{ $refund->orderProduct->store->currentDescription->title }}

{{ $refund->orderProduct->count}}

{{ $refund->orderProduct->total}}

@endsection @section('inner_js') - @endsection