@extends('layouts.adminapp') @section('content') {{-- BankingWithdraw Registeration --}}
{{ __('lng.Back') }}
{{__('lng.WithdrawHistory')}}
@php $si=0; @endphp @foreach($BankingWithdraws as $BankingWithdraw) @php $DTs = date("d-m-Y",strtotime($Banking->date)); @endphp @endforeach
# {{__('lng.Date')}} {{__('lng.Name')}} {{__('lng.Contact')}} {{__('lng.Amount')}}
{{++$si}} {{$DTs}} {{$BankingWithdraw->BankingRegister->Member->name ?? ''}} {{$BankingWithdraw->BankingRegister->Member->contact ?? ''}} @currency($BankingWithdraw->amount)

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

{{-- --}} @endsection