@extends('front.layouts.main') @section('title')My-leaves @endsection @section('content')
@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

Payslips

@if(count($employee_payslip_details) > 0) @foreach($employee_payslip_details as $item) @endforeach
Payslip Month Payslip Delivery Date Gross Salary Net Salary Download
{{ 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
@else @endif
@endsection @push('pageJs') @endpush @push('pageModals') @endpush