@extends('hr.hr-master') @section('title', 'Generate Salary Sheet') @section('content')

Generate Salary Sheet

@if(session('success'))
{{ session('success') }}
@endif
@csrf

Employee Details

Employee Name Present Days Payscale
@csrf

Salary Sheets

@forelse($salarySheets as $salarySheet) @empty @endforelse
Employee Name Payscale Present Days component (fixed) component (%) Total Salary Month Year
{{ $salarySheet->employee->name }} {{ $salarySheet->payscale->component_name }} {{ $salarySheet->present_days }} {{ $salarySheet->component_fixed_value }} {{ $salarySheet->component_percentage_value }} {{ $salarySheet->total_salary }} {{ \Carbon\Carbon::create()->month($salarySheet->month)->format('F') }} {{ $salarySheet->year }}
No Salary Sheets Found
@endsection