73 lines
4.3 KiB
PHP
73 lines
4.3 KiB
PHP
|
@extends('layouts.app')
|
||
|
@section('content')
|
||
|
<div class="page-content">
|
||
|
<div class="container-fluid">
|
||
|
|
||
|
<!-- start page title -->
|
||
|
@include('layouts.partials.breadcrumb', ['title' => 'Promotion/ Demotion'])
|
||
|
|
||
|
<!-- end page title -->
|
||
|
|
||
|
<div class="card">
|
||
|
<div class="card-header align-items-center d-flex">
|
||
|
<h5 class="card-title flex-grow-1 mb-0">Promotion/ Demotion Lists</h5>
|
||
|
<div class="flex-shrink-0">
|
||
|
<a href="{{ route('promotionDemotion.create') }}" class="btn btn-success waves-effect waves-light"><i
|
||
|
class="ri-add-fill me-1 align-bottom"></i> Create</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="card-body">
|
||
|
<table id="buttons-datatables" class="display table-sm table-bordered table">
|
||
|
<thead class="table-light">
|
||
|
<tr>
|
||
|
<th class="tb-col"><span class="overline-title">S.N</span></th>
|
||
|
<th class="tb-col"><span class="overline-title">Title</span></th>
|
||
|
<th class="tb-col"><span class="overline-title">Type</span></th>
|
||
|
<th class="tb-col"><span class="overline-title">Employee</span></th>
|
||
|
<th class="tb-col"><span class="overline-title">Previous Department</span>
|
||
|
</th>
|
||
|
<th class="tb-col"><span class="overline-title">Previous Designation</span>
|
||
|
</th>
|
||
|
<th class="tb-col"><span class="overline-title">New Department</span></th>
|
||
|
<th class="tb-col"><span class="overline-title">New Designation</span></th>
|
||
|
<th class="tb-col" data-sortable="false"><span class="overline-title">Action</span>
|
||
|
</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
|
||
|
@foreach ($promotionDemotionLists as $index => $item)
|
||
|
<tr>
|
||
|
<td class="tb-col">{{ $index + 1 }}</td>
|
||
|
<td class="tb-col">{{ $item->title }}</td>
|
||
|
<td class="tb-col">{{ $item->type }}</td>
|
||
|
<td class="tb-col">{{ $item->employee?->full_name }}</td>
|
||
|
<td class="tb-col">{{ $item->oldDesignation?->department?->name }}</td>
|
||
|
<td class="tb-col">{{ $item->oldDesignation?->name }}</td>
|
||
|
<td class="tb-col">{{ $item->newDesignation?->department?->name }}</td>
|
||
|
<td class="tb-col">{{ $item->newDesignation?->name }}</td>
|
||
|
<td class="tb-col">
|
||
|
<div class="hstack flex-wrap gap-3">
|
||
|
<a href="javascript:void(0);" class="link-info fs-15 view-item-btn"
|
||
|
data-bs-toggle="modal" data-bs-target="#viewModal">
|
||
|
<i class="ri-eye-line"></i>
|
||
|
</a>
|
||
|
<a href="{{ route('promotionDemotion.edit', $item->id) }}"
|
||
|
class="link-success fs-15 edit-item-btn"><i class="ri-edit-2-line"></i></a>
|
||
|
|
||
|
<a href="javascript:void(0);"
|
||
|
data-link="{{ route('promotionDemotion.destroy', $item->id) }}"
|
||
|
data-id="{{ $item->id }}" class="link-danger fs-15 remove-item-btn"><i
|
||
|
class="ri-delete-bin-line"></i></a>
|
||
|
</div>
|
||
|
</td>
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
@endsection
|