@extends('layouts.app') @push('css') @endpush @section('content')
Transfer Officers from external to internal
{{-- --}} {{-- --}} @foreach ($employee as $key => $emp) {{-- --}} {{-- --}} @endforeach
# Full Name NID Number EmailPhone NumberDate of Birth Work Station Designation Action
{{ $key + 1 }} @if (isset($emp->Employee_full_name)) {{ $emp->Employee_full_name }} @else @endif @if (isset($emp->Employee_Nid)) {{ $emp->Employee_Nid }} @else @endif @if (isset($emp->Employee_email)) {{ $emp->Employee_email }} @else N/A @endif @if (isset($emp->Employee_mobile_no)) {{ $emp->Employee_mobile_no }} @else @endif @if (isset($emp->Employee_dob)) {{ Carbon\Carbon::parse($emp->Employee_dob)->format('d-m-Y') }} @else N/A @endif @if (isset($emp->Employee_work)) {{ $emp->Employee_work }} @else @endif @if (isset($emp->designation_name)) {{ $emp->designation_name }} @else @endif @can('batch.edit') Transfer @endcan
@endsection @push('js') @endpush