@extends('portal.layout.app') @section('content')
HrServices / Loan & Advances / Setup
@csrf
Leave Application Details
Personal Information
Employee ID:
{{ isset($data['details']->empcode)?$data['details']->empcode:null }}
Full Name:
{{ isset($data['details']->name)?$data['details']->name:null}}
Department
{{ isset($data['details']->department)?$data['details']->department:null }}
Designation:
{{ isset($data['details']->designation)?$data['details']->designation:null }}
Leave Detail
Contact Details During Leave
Telephone
For Line Manager Use
Application Status:
@if ($data['details']->appstatus == 1) Pending @elseif ($data['details']->appstatus == 2) Approved @elseif ($data['details']->appstatus == 3) Disapproved @endif
Signatures:
{{ $data['details']->c_sign }}
Dated:
{{ dateFromat($data['details']->c_date) }}
Comments:
@include('notification') @section('scripts') @endsection @stop