@extends('layout.app') @section('content')
@foreach ($salarySheets as $salarySheet) @endforeach
Employee Id Name Email Salary Home Allowance TA/DA Allowance Other Allowance Bonous Deduction Net Salary
{{ $salarySheet->employee_id }} {{ $salarySheet->employee->name }} {{ $salarySheet->employee->email }} {{ $salarySheet->salary }} {{ $salarySheet->home_allowance }} {{ $salarySheet->transport_allowance }} {{ $salarySheet->other_allowance }} {{ $salarySheet->bonous }} {{ $salarySheet->deduction }} {{ $salarySheet->net_salary }}
@endsection