@extends('backEnd.master') @section('title') @lang('fees.bank_payment') @endsection @section('mainContent') @push('css') @endpush

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'fees.search-bank-payment', 'method' => 'post']) }}
@if ($errors->has('payment_date')) {{ $errors->first('payment_date') }} @endif
@include('backEnd.common.search_criteria',[ 'div'=>'col-lg-3', 'visiable'=>['class', 'section'] ])
@if ($errors->has('approve_status')) {{ $errors->first('approve_status') }} @endif
@if (userPermission('fees.search-bank-payment')) @endif
{{ Form::close() }}

@lang('fees.bank_payment_list')

@if (isset($feesPayments)) @foreach ($feesPayments as $bank_payment) @php $paid_amount = $bank_payment->PaidAmount; @endphp @endforeach @endif
@lang('student.student_name') @lang('fees::feesModule.view_transcation') @lang('common.date') @lang('fees::feesModule.amount') @lang('common.note') @lang('common.file') @lang('common.status') @lang('common.actions')
{{ @$bank_payment->feeStudentInfo->full_name }} @lang('common.details') {{ dateConvert($bank_payment->created_at) }} {{ $paid_amount + $bank_payment->add_wallet_money }} @if ($bank_payment->payment_note) @lang('common.note') @endif @if (!empty($bank_payment->file)) @lang('common.file') @endif @if ($bank_payment->paid_status == 'pending') @elseif($bank_payment->paid_status == 'approve') @else @endif @if ($bank_payment->paid_status == 'pending') @if (userPermission("fees.approve-bank-payment")) @lang('common.approve') @endif @if (userPermission("fees.reject-bank-payment")) @lang('accounts.reject') @endif @endif
@endsection @include('backEnd.partials.data_table_js') @include('backEnd.partials.date_picker_css_js') @include('backEnd.partials.date_range_picker_css_js') @push('script') @endpush