29 lines
4.3 KiB
PHP
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 : </b> <span>{{$data->first_name}}</span></p><p><b>Middle Name : </b> <span>{{$data->middle_name}}</span></p><p><b>Last Name : </b> <span>{{$data->last_name}}</span></p><p><b>Email : </b> <span>{{$data->email}}</span></p><p><b>Genders Id : </b> <span>{{$data->genders_id}}</span></p><p><b>Nepali Dob : </b> <span>{{$data->nepali_dob}}</span></p><p><b>Dob : </b> <span>{{$data->dob}}</span></p><p><b>Nationalities Id : </b> <span>{{$data->nationalities_id}}</span></p><p><b>About Me : </b> <span>{{$data->about_me}}</span></p><p><b>Signature : </b> <span>{{$data->signature}}</span></p><p><b>Father Name : </b> <span>{{$data->father_name}}</span></p><p><b>Mother Name : </b> <span>{{$data->mother_name}}</span></p><p><b>Grand Father Name : </b> <span>{{$data->grand_father_name}}</span></p><p><b>Grand Mother Name : </b> <span>{{$data->grand_mother_name}}</span></p><p><b>Spouse : </b> <span>{{$data->spouse}}</span></p><p><b>Contact : </b> <span>{{$data->contact}}</span></p><p><b>Alt Contact : </b> <span>{{$data->alt_contact}}</span></p><p><b>Profile Picture : </b> <span>{{$data->profile_picture}}</span></p><p><b>Users Id : </b> <span>{{$data->users_id}}</span></p><p><b>Is Login Required : </b> <span>{{$data->is_login_required}}</span></p><p><b>Skills : </b> <span>{{$data->skills}}</span></p><p><b>Experience : </b> <span>{{$data->experience}}</span></p><p><b>Permanent Address : </b> <span>{{$data->permanent_address}}</span></p><p><b>Permanent City : </b> <span>{{$data->permanent_city}}</span></p><p><b>Temporary Address : </b> <span>{{$data->temporary_address}}</span></p><p><b>Temporary City : </b> <span>{{$data->temporary_city}}</span></p><p><b>Old System Address : </b> <span>{{$data->old_system_address}}</span></p><p><b>Education : </b> <span>{{$data->education}}</span></p><p><b>Castes Id : </b> <span>{{$data->castes_id}}</span></p><p><b>Ethnicities Id : </b> <span>{{$data->ethnicities_id}}</span></p><p><b>Dags Id : </b> <span>{{$data->dags_id}}</span></p><p><b>Title : </b> <span>{{$data->title}}</span></p><p><b>Alias : </b> <span>{{$data->alias}}</span></p><p><b>Status : </b> <span
|
|
class="{{$data->status == 1 ? 'text-success' : 'text-danger'}}">{{$data->status == 1 ? 'Active' : 'Inactive'}}</span></p><p><b>Display Order : </b> <span>{{$data->display_order}}</span></p><p><b>Createdby : </b> <span>{{$data->createdby}}</span></p><p><b>Updatedby : </b> <span>{{$data->updatedby}}</span></p><p><b>Remarks : </b> <span>{{$data->remarks}}</span></p><div class="d-flex justify-content-between">
|
|
<div>
|
|
<p><b>Created On :</b> <span>{{$data->created_at}}</span></p>
|
|
<p><b>Created By :</b> <span>{{$data->createdBy}}</span></p>
|
|
</div>
|
|
<div>
|
|
<p><b>Updated On :</b> <span>{{$data->updated_at}}</span></p>
|
|
<p><b>Updated By :</b> <span>{{$data->updatedBy}}</span></p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@endSection
|