@if(Session::get('fail_message', false))
@component('front.components.message')
{{ Session::get('fail_message') }}
@endcomponent
@endif
@if(Session::get('success'))
@component('front.components.message')
{{ Session::get('success') }}
@endcomponent
@endif
@if(count($employee_payslip_details) > 0)
Payslip Month |
Payslip Delivery Date |
Gross Salary |
Net Salary |
Download |
@foreach($employee_payslip_details as $item)
{{ date('F Y', strtotime($item->processing_year."-". $item->processing_month . "-01")) }} |
{{ $item->payslip_delivery_date }} |
{{ $item->gross_salary != null ? number_format($item->gross_salary, 2, '.', ',') : '' }} |
{{ $item->net_salary != null ? number_format($item->net_salary, 2, '.', ',') : '' }} |
get_app |
@endforeach
@else
No Record Found
@endif
@endsection
@push('pageJs')
@endpush
@push('pageModals')
@endpush