@if (Session::has('success'))
Success ! {{ session('success') }}
@endif
@if($errors->any())
@foreach($errors->all() as $error)
Error ! {{ $error }}
@endforeach
@endif
Monthly Addition Component
@if ($hrm_emp_monthly_add)
@php
$count = 1;
@endphp
| Sl |
Employee |
Year |
Month |
Addition Component |
Amount |
Action |
@foreach ($hrm_emp_monthly_add as $hrm_emp)
| {{ $count++ }} |
{{ $hrm_emp->emp_name }} |
{{ $hrm_emp->year }} |
{{ $hrm_emp->month }} |
{{ $hrm_emp->add_comp_id }} |
{{ $hrm_emp->amnt }} |
|
@endforeach
@endif
@push('select2')
@endpush
@endsection