77 lines
4.6 KiB
PHP
77 lines
4.6 KiB
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<div class="page-content">
|
|
<div class="container-fluid">
|
|
|
|
<!-- start page title -->
|
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
|
|
|
<!-- end page title -->
|
|
|
|
<div class="card">
|
|
<div class="card-header align-items-center d-flex">
|
|
<h5 class="card-title flex-grow-1 mb-0">{{ $title }}</h5>
|
|
<div class="flex-shrink-0">
|
|
<a href="{{ route('offerLetter.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">Name</span></th>
|
|
<th class="tb-col"><span class="overline-title">Designation</span></th>
|
|
<th class="tb-col"><span class="overline-title">Joining Date</span></th>
|
|
<th class="tb-col"><span class="overline-title">Issued By</span></th>
|
|
<th class="tb-col"><span class="overline-title">Issued Date</span></th>
|
|
<th class="tb-col"><span class="overline-title">Status</span></th>
|
|
<th class="tb-col" data-sortable="false"><span class="overline-title">Action</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
@foreach ($offerLetterLists as $index => $item)
|
|
<tr>
|
|
<td class="tb-col">{{ $index + 1 }}</td>
|
|
<td class="tb-col">{{ $item->applicant_name }}</td>
|
|
<td class="tb-col">{{ $item->designation_id }}</td>
|
|
<td class="tb-col">{{ $item->joining_date }}</td>
|
|
<td class="tb-col">{{ $item->issued_by }}</td>
|
|
<td class="tb-col">{{ $item->issued_date }}</td>
|
|
<td class="tb-col">{!! $item->status_name !!}</td>
|
|
<td>
|
|
<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>
|
|
@can('offerLetter.edit')
|
|
<a href="{{ route('offerLetter.edit', $item->offer_Letter_id) }}"
|
|
class="link-success fs-15 edit-item-btn"><i class="ri-edit-2-line"></i></a>
|
|
@endcan
|
|
<a href="javascript:void(0);" class="link-dark fs-15 view-item-btn"
|
|
data-bs-toggle="modal" data-bs-target="#statusModal">
|
|
<i class="ri-check-double-line"></i>
|
|
</a>
|
|
@can('offerLetter.destroy')
|
|
<a href="javascript:void(0);"
|
|
data-link="{{ route('offerLetter.destroy', $item->offer_Letter_id) }}"
|
|
data-id="{{ $item->offer_Letter_id }}"
|
|
class="link-danger fs-15 remove-item-btn"><i
|
|
class="ri-delete-bin-line"></i></a>
|
|
@endcan
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|