@extends('layouts.master')
@section('titel', 'Salary Slips | ')
@section('content')
@include('partials.header')
@include('partials.sidebar')
Loading data, please wait...
Employee |
Salary Date |
Days |
Wage |
Advance |
Loan Deduction |
Conveyance |
OT Hours |
Total Salary |
@foreach($employees as $emp)
{{ $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) }} |
@endforeach
@if($employees->isEmpty())
No records found. |
@endif
@endsection
@push('js')
@endpush