@extends('layouts.usermaster') @section('styles') @endsection @section('content')
@include('includes.user.verticalmenu')
{{lang('Refunds')}}
@php $refundDays = setting('refundDays'); $startDate = \Carbon\Carbon::now()->subDays($refundDays); $item = \App\Models\AllTransactions::where('cust_id', Auth::id())->whereNotIn('status', ['refunded', 'refundpending'])->whereIn('status', ['paid', 'completed'])->whereBetween('updated_at', [$startDate, \Carbon\Carbon::now()])->first(); @endphp @if (setting('enableRefund') == 'on')
{{-- --}} @endif
{{ lang('S.No') }} {{ lang('Invoice Id') }} {{ lang('Price') }} {{ lang('Payment For') }} {{ lang('Payment Method') }} {{ lang('Status') }} {{ lang('Actions') }}
@include('includes.user.refundModal') @endsection @section('scripts') @vite(['resources/assets/js/select2.js']) @endsection