@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => 'Promotion/ Demotion'])
Promotion/ Demotion Lists
@foreach ($promotionDemotionLists as $index => $item) @endforeach
S.N Title Type Employee Previous Department Previous Designation New Department New Designation Action
{{ $index + 1 }} {{ $item->title }} {{ $item->type }} {{ $item->employee?->full_name }} {{ $item->oldDesignation?->department?->name }} {{ $item->oldDesignation?->name }} {{ $item->newDesignation?->department?->name }} {{ $item->newDesignation?->name }}
@endsection