@extends('layouts.backend.app') @section('title','Admin | Employees') @push('css') @endpush @section('content')
add Add New Employee

All Employees {{ $employees->count() }}

@foreach( $employees as $key => $data) @endforeach
SL Name Department Employee ID Phone Office Email Status Image Action
SL Name Department Employee ID Phone Office Email Status Image Action
{{ $key + 1 }} {{ $data->name }} {{ $data->department->name }} {{ sprintf('%03d', $data->emply_id) }} {{ $data->phone }} {{ $data->email }} {!! $data->status == 1 ? "Active" : "Inactive" !!} visibility create {{-- if($data->status == 1) else endif --}}
{{-- Delete Modal --}} @endsection @push('js') @endpush