@extends('layouts.app') @section('title', $page_title) @section('content')

{{ $sub_title }}

{{__('file.Back')}}
{{__('Customer Name')}} :
{{__('Customer ID')}} :
{{__('Customer Department')}} :
{{__('Customer Designation')}} :
{{$employee->employee->name}}
{{$employee->employee->employee_id}}
{{$employee->employee->department->name}}
{{$employee->employee->designation->name}}

{{__('All Provident Fund Report')}}

{{__('Subscription Amount')}}:
{{$employee->provident_fund_contribution}}/-TK
@php $p = 0; @endphp @foreach($all_fund as $row) @endforeach
{{__('Month Name')}} {{__('Contribution Amount')}}
{{date('F-Y', strtotime($row->payment_month))}} {{$row->provident_fund}}/-TK @php $p += $row->provident_fund; @endphp
Total Provident Fund {{$p}}/-TK
With Subscription Amount : {{$employee->provident_fund_contribution + $p}}/TK
@endsection @push('scripts') @endpush