@extends('layouts.master')
@section('content')
| No |
Nama Pegawai |
Email |
Telepon |
Status |
{{-- Date Join | --}}
Action |
@foreach ($listPegawai as $item)
| {{ $loop->iteration }} |
{{ $item->name }} |
{{ $item->email }} |
{{ $item->hp }} |
@if ($item->is_active == 1)
|
@else
|
@endif
{{-- 2011/04/25 | --}}
|
@endforeach
@section('script')
@endsection
@endsection