@extends('layouts.master') @section('titel', 'Salary Slips | ') @section('content') @include('partials.header') @include('partials.sidebar')

Salary Entries

New Salary Entry
@foreach($employees as $emp) @endforeach @if($employees->isEmpty()) @endif
Employee Salary Date Days Wage Advance Loan Deduction Conveyance OT Hours Total Salary
{{ $emp->employee_name }} {{ $emp->sal_date }} {{ $emp->days }} {{ number_format($emp->pay, 2) }} {{ number_format($emp->advance, 2) }} {{ number_format($emp->loan_ded, 2) }} {{ $emp->conveyance }} {{ $emp->ot_hours }} {{ number_format($emp->net_salary, 2) }}
No records found.
@endsection @push('js') @endpush