61 lines
3.2 KiB
PHP
61 lines
3.2 KiB
PHP
@extends('layouts.business.pdf.pdf_layout')
|
|
|
|
@section('pdf_title')
|
|
<div class="table-header justify-content-center border-0 d-none d-block d-print-block text-center">
|
|
@include('business::print.header')
|
|
<h4 style="text-align: center; margin: 0; padding: 0; font-size: 16px;" class="">{{ __('Leave Report List') }}</h4>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('pdf_content')
|
|
<table width="100%" cellpadding="6" cellspacing="0"
|
|
style="border-collapse: collapse; border: 1px solid gainsboro; font-size:12px;"
|
|
id="datatable">
|
|
<thead>
|
|
<tr style="background-color: #C52127; color: white;">
|
|
<th style="font-size:12px; border:1px solid gainsboro; color: white" class="text-start">{{ __('Employee') }}</th>
|
|
<th style="font-size:12px; border:1px solid gainsboro; color: white" class="text-start">{{ __('Month') }}</th>
|
|
<th style="font-size:12px; border:1px solid gainsboro; color: white" class="text-start">{{ __('Start Date') }}</th>
|
|
<th style="font-size:12px; border:1px solid gainsboro; color: white" class="text-start">{{ __('End Date') }}</th>
|
|
<th style="font-size:12px; border:1px solid gainsboro; color: white" class="text-start">{{ __('Leave Type') }}</th>
|
|
<th style="font-size:12px; border:1px solid gainsboro; color: white" class="text-start">{{ __('Duration') }}</th>
|
|
<th style="font-size:12px; border:1px solid gainsboro; color: white" class="text-start">{{ __('Status') }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($leaves as $leave)
|
|
<tr style="background-color: {{ $loop->even ? '#F5F5F5' : '#FFFFFF' }};">
|
|
<td style="border:1px solid gainsboro; text-align:center;">
|
|
{{ $leave->employee?->name }}
|
|
</td>
|
|
<td style="border:1px solid gainsboro; text-align:center;">
|
|
{{ ucfirst($leave->month) }}
|
|
</td>
|
|
<td style="border:1px solid gainsboro; text-align:center;">
|
|
{{ formatted_date($leave->start_date) }}
|
|
</td>
|
|
<td style="border:1px solid gainsboro; text-align:center;">
|
|
{{ formatted_date($leave->end_date) }}
|
|
</td>
|
|
<td style="border:1px solid gainsboro; text-align:center;">
|
|
{{ $leave->leave_type?->name }}
|
|
</td>
|
|
<td style="border:1px solid gainsboro; text-align:center;">
|
|
{{ $leave->leave_duration }} {{ __('Days') }}
|
|
</td>
|
|
<td style="border:1px solid gainsboro; text-align:center;">
|
|
@if ($leave->status == 'pending')
|
|
{{__('Pending')}}
|
|
@elseif ($leave->status == 'approved')
|
|
{{__('Approved')}}
|
|
@elseif ($leave->status == 'rejected')
|
|
{{__('Rejected')}}
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@endsection
|
|
|