@extends('admin.layouts.layouts')
@section('title', 'View Employee WFH Request')
@section('page-css')
@endsection
@section('content')
Employee Name:
{{ $showDetails->employeeMaster->employee_name ?? '-' }}
Reason:
{{ $showDetails->reason ?? '-' }}
Date:
{{ date('d-m-Y', strtotime($showDetails->date)) ?? '-' }}
@can('employee-wfh-status')
Status:
@endcan
| No |
Status |
Created Date |
Created By |
Updated Date |
Updated By |
@endsection
@section('page-js')
@endsection