@extends('layouts.master') @section('title',__('index.resignation')) @section('action',__('index.show_detail')) @section('button')
@endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.resignation.common.breadcrumb')
@if(isset($resignationDetail->document)) @endif
{{ __('index.branch') }} {{ $resignationDetail->branch?->name }}
{{ __('index.department') }} {{ $resignationDetail->department?->dept_name }}
{{ __('index.employee_name') }} {{ $resignationDetail->employee?->name }}
{{ __('index.resignation_date') }} {{ \App\Helpers\AppHelper::formatDateForView($resignationDetail->resignation_date) }}
{{ __('index.last_date') }} {{ \App\Helpers\AppHelper::formatDateForView($resignationDetail->last_working_day) }}
{{ __('index.reason') }} {!! $resignationDetail->reason !!}
{{ __('index.document') }} @php $fileExtension = pathinfo($resignationDetail->document, PATHINFO_EXTENSION); @endphp @if(in_array($fileExtension, ['jpeg', 'jpg', 'png', 'webp'])) Certificate @elseif($fileExtension === 'pdf') Preview PDF @else Download Document @endif