@extends('layouts.main') @push('styles') @endpush @section('content')

Inactive Payslips

@include('flash::message')

Export data to CSV, Excel, PDF & Print

@foreach($payments as $payment) @endforeach
Staff Member Payment Period Headship Calls Other Staff Society School Fees Other Debts Advances Vehicle Hire Patient Debts PAYE NSSF Basic Pay Gross Pay Total Deductions Net Pay
{{ $member_details_first_name[$payment->member_id] }} {{ $member_details_last_name[$payment->member_id] }} {{ $payment->month }}, {{ $payment->year }} {{ ugandan_shillings($payment->headship) }} {{ ugandan_shillings($payment->calls) }} {{ ugandan_shillings($payment->other) }} {{ ugandan_shillings($payment->staff_society) }} {{ ugandan_shillings($payment->school_fees) }} {{ ugandan_shillings($payment->other_debts) }} {{ ugandan_shillings($payment->advances) }} {{ ugandan_shillings($payment->vehicle_hire) }} {{ ugandan_shillings($payment->patient_debts) }} {{ ugandan_shillings($payment->paye_payment) }} {{ ugandan_shillings($payment->nssf_payment) }} {{ ugandan_shillings($payment->basic_pay) }} {{ ugandan_shillings($payment->gross_pay) }} {{ ugandan_shillings($payment->total_deductions) }} {{ ugandan_shillings($payment->net_pay) }} {{ Form::model($payment->id ,['method' => 'POST', 'route' => ['payroll.activate_payslip', $payment->id]]) }} {{ Form::close() }}
@endsection @push('scripts') @endpush