@php use App\Helpers\AppHelper; @endphp @extends('layouts.master') @section('title',__('index.promotion')) @section('action',__('index.show_detail')) @section('button')
@endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.promotion.common.breadcrumb')
{{-- --}} {{-- --}} {{-- --}} {{-- --}}
{{ __('index.branch') }} {{ $promotionDetail->branch?->name }}
{{ __('index.department') }} {{ $promotionDetail?->department?->dept_name }}
{{ __('index.employee_name') }} {{ $promotionDetail?->employee?->name }}
{{ __('index.old_post') }} {{ $promotionDetail?->oldPost?->post_name }}
{{ __('index.new_post') }} {{ $promotionDetail?->post?->post_name }}
{{ __('index.promotion_date') }} {{ AppHelper::formatDateForView($promotionDetail->promotion_date) }}
{{ __('index.description') }} {!! $promotionDetail->description !!}
{{ __('index.remark') }}--}} {{-- {!! $promotionDetail->remark !!}--}} {{--
{{ __('index.created_by') }} {{ $promotionDetail->createdBy->name ?? 'Admin' }}
{{ __('index.updated_by') }} {{ $promotionDetail->updatedBy->name ?? 'Admin' }}
@endsection