@extends('layouts.app') @section('content')
No salary records found for selected criteria.
@else @foreach ($salaries->chunk(4) as $chunk)Name: {{ $salary->name }}
Designation: {{ $salary->desig }}
Month: {{ $salary->month }}/{{ $salary->year }}
Basic Salary: {{ number_format($salary->pay, 2) }}
Days Worked: {{ $salary->days_worked }}
OT Hours: {{ $salary->ot_hours }}
Advance: {{ number_format($salary->advance, 2) }}
Loan Deduction: {{ number_format($salary->loan_ded, 2) }}
Conveyance: {{ number_format($salary->conveyance, 2) }}
Gross Salary: {{ number_format($salary->gross_salary, 2) }}
Net Salary: {{ number_format($salary->net_salary, 2) }}