@extends('admin.layouts.layouts') @section('title', 'View Employee Master') @section('content')
Employee Master View
← Back
Name:
{{ $showDetails->employee_name ?? '-' }}
Employee Code:
{{ $showDetails->employee_code ?? '' }}
Phone Number:
{{ $showDetails->phone_number ?? '' }}
Email:
{{ $showDetails->email ?? '' }}
Gender:
{{ $showDetails->gender ?? '' }}
Address:
{{ $showDetails->address ?? '' }}
Created By:
{{ $showDetails->users->name ?? '-' }}
Created At:
{{ $showDetails->created_at->format('d-m-Y h:i A') ?? '' }}
Status:
@php $status = [ 0 => ['text' => 'Deactive', 'class' => 'badge badge-warning badge-pill'], 1 => ['text' => 'Active', 'class' => 'badge badge-info badge-pill'], ]; $current = $status[$showDetails->status] ?? [ 'text' => 'Unknown', 'class' => 'badge rounded-pill bg-secondary', ]; @endphp {{ $current['text'] }}
Aadhar Card:
{{ $showDetails->aadhar_number ?? '' }}
Aadhar Front:
@if ($showDetails->aadhar_front) Aadhar Front @else No image available @endif
@if (isset($showDetails->aadhar_back))
Aadhar Back:
@if ($showDetails->aadhar_back) Aadhar Back @else No image available @endif
@endif
Pan:
{{ $showDetails->aadhar_number ?? '' }}
Pan Image:
@if ($showDetails->pan_file) Pan Image @else No image available @endif
Employee Department:
{{ $showDetails->employeeDepartment->name ?? '' }}
Employee Designation:
{{ $showDetails->employeeDesignation->name ?? '' }}
Employee Role:
{{ $showDetails->employeeRole->name ?? '' }}
Shift Type:
{{ $showDetails->shiftType->name ?? '' }}
Reporting Person:
{{ $showDetails->reportingPerson->name ?? '' }}
Cold Storage:
{{ $showDetails->coldStorage->storage_name ?? '' }}
Bank Name:
{{ $showDetails->bank_name ?? '' }}
Account No:
{{ $showDetails->account_no ?? '' }}
IFSC Code:
{{ $showDetails->ifsc_code ?? '' }}
Cheque Image:
@if ($showDetails->blank_cheque) Cheque Image @else No image available @endif
Cheque No:
{{ $showDetails->cheque_number ?? '' }}
Employee Master History
@can('employee-master-salary-create') @endcan
No Salary Start Date End Date Action
@endsection @section('page-js') @endsection