@foreach($refunds as $key=> $row)
|
|
{{ $row->uuid }} |
{{$row->orderProduct->product->currentDescription->title ?? ''}} |
{{$row->order->user->phone ?? ''}} |
{{$row->order->user->email ?? ''}} |
{{$row->order_id ?? ''}} |
{{__('refunds.statuses.'.$row->status)}} |
{{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} |
|
@endforeach
@if( count( $refunds ) && $refunds->hasPages() )
| {{ $refunds->links() }} |
@endif