/home/techb158/ileadtechnology.com/SSM/resources/views/print/employee/leave
Edit: /home/techb158/ileadtechnology.com/SSM/resources/views/print/employee/leave/allocation.blade.php (1464B)
@include('print.print-layout.header')
{{config('config.default_academic_session.name')}}
{{trans('post.leave_allocation').' '.trans('general.total_result_count',['count' => count($leave_allocations)])}}
| {{trans('employee.name')}} |
{{trans('employee.designation')}} |
{{trans('employee.leave_allocation_period')}} |
{{trans('employee.leave_allotted')}} |
@foreach($leave_allocations as $leave_allocation)
| {{$leave_allocation->Employee->name_with_code}} |
{{getEmployeeDesignationName($leave_allocation->Employee, $leave_allocation->end_date)}} |
{{showDate($leave_allocation->start_date).' '.trans('general.to').' '.showDate($leave_allocation->end_date)}} |
@foreach($leave_allocation->LeaveAllocationDetails as $leave_allocation_detail)
{{$leave_allocation_detail->LeaveType->name.': '.$leave_allocation_detail->used.'/'.$leave_allocation_detail->allotted}}
@endforeach
|
@endforeach
@include('print.print-layout.footer')