@extends('layout.app') @section('title') Payslips @endsection @section('pagetitle') Payslips @endsection @section('content')
@include('includes.errors') @include('includes.success')
Payment Period
Payslips
@if (!empty($_GET['filter']) && $_GET['filter'] == true)
@csrf
@foreach ($payslips as $item) @endforeach
Sn Name Basic Gross Pay Total Deduction Net Pay
{{$i+1}} {{$item->payroll->employee_name}} {{number_format($item->paymentstructure->basic,2)}} {{number_format($item->paymentstructure->gross_pay,2)}} {{number_format($item->paymentstructure->deduction,2)}} {{number_format($item->paymentstructure->net_pay,2)}} Email Payslip Print Payslip
@else
Please select parameters and click the show record button
@endif
@endsection @section('scripts') @endsection