@extends('layouts.adminapp') @section('title') {{ __('lng.Banking') }} @endsection @section('open_payments', 'open') @section('active_payments', 'active') @section('active_banking', 'active') @section('content')

{{ __('lng.Banking') }}

{{ __('lng.BankingTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($Bankings as $Banking) @php $DTs = date("d-m-Y",strtotime($Banking->date)); @endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Date') }} {{ __('lng.Name') }} {{ __('lng.RegisterFee') }} {{ __('lng.RenewalFee') }} {{ __('lng.MinBalance') }} {{ __('lng.MaxBalance') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $DTs }} {{ $Banking->name }} @currency($Banking->register_fee) @currency($Banking->renewal_fee) @currency($Banking->min_balance) @currency($Banking->max_withdrowal) {{ __('lng.Details') }}

{{ __('lng.Showing') }} {{ $Bankings->count() }} {{ __('lng.Items') }}

@endif
@endsection