@extends('admin.layouts.tabelapp', ['activePage' => 'dashboard', 'titlePage' => __('Dashboard')])
@section('content')
| # |
Employee Name |
Email Address |
Created Date |
Status |
Action |
@if (count($datas) > 0)
@php ($i = 1)
@foreach ($datas as $data)
| {{ $i }} |
{{ $data->name }} |
{{ $data->email }} |
{{ $data->created_at }} |
Inactive
|
Edit
|
@php ($i++)
@endforeach
@endif
| # |
Employee Name |
Email Address |
Created Date |
Status |
Action |
@endsection