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