@extends('layouts.organization') @section('breadcrumb')

{{ __(@$title) }}

@endsection @section('content')
{{ __(@$title) }}
@if (count($refunds) > 0)
@foreach ($refunds as $refund) @endforeach
{{ __('SL') }} {{ __('Student') }} {{ __('Course') }} {{ __('Reason') }} {{ __('Amount') }} {{ __('Status') }} {{ __('Action') }}
{{ $loop->iteration }} {{ $refund->user->name }} {{ $refund->order_item->course->title }} {{ $refund->reason }} @if(get_currency_placement() == 'after') {{ $refund->amount }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $refund->amount }} @endif @if($refund->status == STATUS_PENDING) Pending @elseif($refund->status == STATUS_APPROVED) Approved @else Rejected @endif @if ($refund->status == STATUS_PENDING) @endif
@else
img
{{ __('Empty Refund') }}
@endif
@endsection @push('script') @endpush