New-OMIS/resources/views/crud/generated/employees/show.blade.php
2024-04-05 11:07:15 +05:45

29 lines
4.3 KiB
PHP

@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('employees.index')); ?>
</div>
<div class='card-body'>
<p><b>First Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->first_name}}</span></p><p><b>Middle Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->middle_name}}</span></p><p><b>Last Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->last_name}}</span></p><p><b>Email :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->email}}</span></p><p><b>Genders Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->genders_id}}</span></p><p><b>Nepali Dob :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->nepali_dob}}</span></p><p><b>Dob :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->dob}}</span></p><p><b>Nationalities Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->nationalities_id}}</span></p><p><b>About Me :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->about_me}}</span></p><p><b>Signature :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->signature}}</span></p><p><b>Father Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->father_name}}</span></p><p><b>Mother Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->mother_name}}</span></p><p><b>Grand Father Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->grand_father_name}}</span></p><p><b>Grand Mother Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->grand_mother_name}}</span></p><p><b>Spouse :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->spouse}}</span></p><p><b>Contact :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->contact}}</span></p><p><b>Alt Contact :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->alt_contact}}</span></p><p><b>Profile Picture :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->profile_picture}}</span></p><p><b>Users Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->users_id}}</span></p><p><b>Is Login Required :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->is_login_required}}</span></p><p><b>Skills :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->skills}}</span></p><p><b>Experience :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->experience}}</span></p><p><b>Permanent Address :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->permanent_address}}</span></p><p><b>Permanent City :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->permanent_city}}</span></p><p><b>Temporary Address :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->temporary_address}}</span></p><p><b>Temporary City :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->temporary_city}}</span></p><p><b>Old System Address :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->old_system_address}}</span></p><p><b>Education :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->education}}</span></p><p><b>Castes Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->castes_id}}</span></p><p><b>Ethnicities Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->ethnicities_id}}</span></p><p><b>Dags Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->dags_id}}</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>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><p><b>Remarks :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->remarks}}</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>
@endSection