@extends('layouts.master') @section('content')
Employee

Employees List @can('Employees add') Add Employee @endcan

{{--

--}} {{--
--}}
@foreach ($employee as $key => $curr) @php $username = App\User::where('id', $curr->employee_created_by)->first(); @endphp @endforeach
S.No Name Number Email Address Status Created By Created At Action
{{ $key + 1 }} {{ $curr['employee_name'] }} {{ $curr['employee_no'] }} {{ $curr['employee_email'] }} {{ $curr['employee_address'] }} @if ($curr->status == 1) Active @else In Active @endif {{ $username->name }} 01-01-1970 @can('Employees edit') Edit @endcan @can('Employees delete') {{-- --}} Remove @endcan
S.No Name Number Email Address Status Created By Created At Action
{{--
--}} @endsection @push('scripts') @endpush