@extends('layouts.admin.core') @section('content')
@if ($message = Session::get('success'))

{{ $message }}

@endif

Manage Pegawai

@can('pegawai-create')  Tambah Pegawai   Update Dari Sikep @endcan
@foreach ($pegawais as $key => $pegawai) @endforeach
No NIP Nama Lengkap Golongan Jabatan Satker No. HP Action
{{ ++$i }} {{ $pegawai->nip_baru }} {{ $pegawai->nama }} {{ $pegawai->golongan }} {{ $pegawai->jabatan_unit_kerja }} {{ $pegawai->nomor_handphone }}
Detail @can('pegawai-edit') Edit @endcan @csrf @method('DELETE') @can('pegawai-delete') @endcan Ganti Status
@endsection @section('js') @stop