@extends('layouts.app') @section('content')

Employee Details

View Employees
{{ __(' Name') }} - @if(isset($employee)) {{ $employee->first_name}} {{ $employee->last_name }} @endif
{{ __(' Email') }} - {{ $employee->email }}
{{ __('Office Name') }} - @if($employee->office_type == 'BR' || $employee->office_type == 'HO') @if(isset($branches->branch_name)) {{ $branches->branch_name }} @endif @endif @if($employee->office_type == 'FR') {{ $branches->enterprise_name }} @endif
{{ __(' Office Type') }} - @if($employee->office_type == 'HO') Head Office @endif @if($employee->office_type == 'BR') Branch Office @endif @if($employee->office_type == 'FR') Partner @endif
{{ __(' Mobile Number') }} - @if(isset($employee)) {{ $employee->mobile_number }} @endif
{{ __(' Office Code') }} - @if($employee->office_type == 'BR' || $employee->office_type == 'HO') {{ $employee->branch->code }} @endif @if($employee->office_type == 'FR') {{ $employee->franchisee->code }} @endif
@if(isset($employee->phone_number)) {{ __(' Landline Number') }} - {{ $employee->phone_number }} @endif

Bank Details

{{ __(' Current Bank Name') }} - @if(isset($employee)) {{ $employee->current_bank_name }} @endif
{{ __(' Branch Name') }} - @if(isset($employee)) {{ $employee->branch_name }} @endif
{{ __(' Account Number') }} - @if(isset($employee)) {{ $employee->account_number }} @endif
{{ __(' IFSC CODE') }} - @if(isset($employee)) {{ $employee->ifsc_code }} @endif

ID Proof

{{--
--}} {{-- @if(isset($employee->email))--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- @endif--}} @endsection