leave user employee module setup

This commit is contained in:
2024-04-07 13:13:58 +05:45
parent da9f493572
commit cfd2147536
174 changed files with 9312 additions and 9540 deletions

View File

@ -1,29 +1,45 @@
@extends('backend.template')
@section('content')
<div class='card'>
<div class='card-header d-flex justify-content-between align-items-center'>
<h2><?php echo label('View Details'); ?></h2>
<?php createButton("btn-primary btn-cancel","","Back to List",route('onboardings.index')); ?>
@extends('layouts.app')
@section('content')
<div class='card'>
<div class='card-header d-flex justify-content-between align-items-center'>
<h2><?php echo label('View Details'); ?></h2>
<?php createButton('btn-primary btn-cancel', '', 'Back to List', route('onboardings.index')); ?>
</div>
<div class='card-body'>
<p><b>Doj :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->doj}}</span></p><p><b>Designations Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->designations_id}}</span></p><p><b>Position Status :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->position_status}}</span></p><p><b>Departments Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->departments_id}}</span></p><p><b>Shifts Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->shifts_id}}</span></p><p><b>Agreement :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->agreement}}</span></p><p><b>Nda :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->nda}}</span></p><p><b>Terms :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->terms}}</span></p><p><b>Workoptions :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->workoptions}}</span></p><p><b>Title :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->title}}</span></p><p><b>Alias :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->alias}}</span></p><p><b>Status :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span
class="{{$data->status == 1 ? 'text-success' : 'text-danger'}}">{{$data->status == 1 ? 'Active' : 'Inactive'}}</span></p><p><b>Remarks :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->remarks}}</span></p><p><b>Display Order :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->display_order}}</span></p><p><b>Createdby :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->createdby}}</span></p><p><b>Updatedby :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->updatedby}}</span></p><div class="d-flex justify-content-between">
<div>
<p><b>Created On :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->created_at}}</span></p>
<p><b>Created By :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->createdBy}}</span></p>
</div>
<div>
<p><b>Updated On :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->updated_at}}</span></p>
<p><b>Updated By :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->updatedBy}}</span></p>
</div>
</div>
</div>
<div class='card-body'>
<p><b>Doj :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->doj }}</span></p>
<p><b>Designations Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->designations_id }}</span></p>
<p><b>Position Status :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->position_status }}</span></p>
<p><b>Departments Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->departments_id }}</span></p>
<p><b>Shifts Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->shifts_id }}</span></p>
<p><b>Agreement :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->agreement }}</span></p>
<p><b>Nda :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->nda }}</span></p>
<p><b>Terms :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->terms }}</span></p>
<p><b>Workoptions :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->workoptions }}</span></p>
<p><b>Title :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->title }}</span></p>
<p><b>Alias :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->alias }}</span></p>
<p><b>Status :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span
class="{{ $data->status == 1 ? 'text-success' : 'text-danger' }}">{{ $data->status == 1 ? 'Active' : 'Inactive' }}</span>
</p>
<p><b>Remarks :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->remarks }}</span></p>
<p><b>Display Order :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->display_order }}</span></p>
<p><b>Createdby :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->createdby }}</span></p>
<p><b>Updatedby :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{ $data->updatedby }}</span></p>
<div class="d-flex justify-content-between">
<div>
<p><b>Created On :</b>&nbsp;&nbsp;&nbsp;<span>{{ $data->created_at }}</span></p>
<p><b>Created By :</b>&nbsp;&nbsp;&nbsp;<span>{{ $data->createdBy }}</span></p>
</div>
@endSection
<div>
<p><b>Updated On :</b>&nbsp;&nbsp;&nbsp;<span>{{ $data->updated_at }}</span></p>
<p><b>Updated By :</b>&nbsp;&nbsp;&nbsp;<span>{{ $data->updatedBy }}</span></p>
</div>
</div>
</div>
</div>
@endSection