@extends('backend.layouts.app') @section('title', @$data['title']) @section('style') @endsection @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
| {{ _trans('common.Employee ID') }} | : {{ @$data['deduction']->user->employee_id }} |
|---|---|
| {{ _trans('common.Employee Name') }} | : {{ @$data['deduction']->user->name }} |
| {{ _trans('common.Employee Type') }} | : {{ @$data['deduction']->user->employee_type }} |
| {{ _trans('common.Department') }} | : {{ @$data['deduction']->user->department->title }} |
| {{ _trans('common.Designation') }} | : {{ @$data['deduction']->user->designation->title }} |
| {{ _trans('common.Shift') }} | : {{ @$data['deduction']->user->shift->name }} [{{ \Carbon\Carbon::parse(@$data['deduction']->user->dutySchedule->start_time)->format('h:i:A') . ' - ' . \Carbon\Carbon::parse(@$data['deduction']->user->dutySchedule->end_time)->format('h:i:A') }}] |
| {{ _trans('common.Joining Date') }} | : {{ @$data['deduction']->user->joining_date }} |
| {{ _trans('common.Email') }} | : {{ @$data['deduction']->user->email }} |
| {{ _trans('common.Phone') }} | : {{ @$data['deduction']->user->phone }} |
{!! nl2br($data['deduction']->appeal_details) !!}
@if ($data['deduction']->appeal_attachment_id) {{ _trans('common.Attachment') }} @endif @else