@extends('layouts.adminapp') @section('title') {{ __('lng.BankingReport') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_banking_report', 'open') @section('active_banking_report', 'active') @section('content')

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

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

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

@endif
@endsection