@extends('layouts.frontend.app') @section('content')
{{ $staff->name }}

{{ $staff->designation }} || Joining Date - {{ $staff->join }}
Fund Deposit

{{ $deposit }} ৳

Fund Withdraw

{{ $withdraw }} ৳

Fund Balance

{{ $balance }} ৳

Security Money

0 ৳

@foreach ( $staff->staff_funds as $transaction ) @endforeach
SL Date Purpose Deposit Withdraw Account No Member Name Type Process By Action
{{ $loop->iteration }} {{ $transaction->date }} {{ $transaction->type == 'deposit'? $transaction->amount:'0.00' }} {{ $transaction->type == 'withdraw'? $transaction->amount:'0.00' }} {{ $transaction->member_id? $transaction->member->account :'' }} {{ $transaction->member_id? $transaction->member->m_name :'' }} {{ $transaction->type }} {{ $transaction->processed_by? $transaction->processor->name: '' }}
@endsection