@extends('layouts.main') @section('main-container')
@if (Session::has('success')) @endif @if($errors->any()) @endif
Employee List
@csrf

@if ($masEmployees)

Millennium Computers and Networking

Employee List

Office: {{$selectedOfficeName->name}}

@php $count = 1; @endphp @foreach ($masEmployees as $masEmployee) @endforeach
Userid Employee Name Date of Birth Date of Joining Department Designation Working Duration Status Mobile Email
{{ $masEmployee->emp_id }} {{ $masEmployee->emp_name }} {{ $masEmployee->date_of_birth }} {{ $masEmployee->date_of_joining }} {{ $masEmployee->department }} {{ $masEmployee->designation }} @if ($masEmployee->ndate > 0) {{\Carbon\Carbon::parse($masEmployee->ndate)->diffForHumans(['parts' => 2])}} @endif {{ $masEmployee->name }} {{ $masEmployee->mobile }} {{ $masEmployee->email }}
{!! $masEmployees->links() !!}
@endif
@push('select2') @endpush @endsection