@extends('layouts.dashboard') @section('breadcrumb') @endsection @section('content')
Data Petugas
{{ __('Tambah Petugas') }}
@php $i=1; @endphp @foreach($users as $value) @php $i++; @endphp @endforeach
# NAMA EMAIL LEVEL DIBUAT
{{ $i }} {{ $value->name }} {{ $value->email }} {{ $value->level }} {{ $value->created_at->format('d M, Y') }}
@if($users->lastPage() != 1)
@for($i = 1; $i <= $users->lastPage(); $i++) {{ $i }} @endfor
@endif @if(count($users) == 0)
Tidak ada data!
@endif
@endsection @section('sweet') function deleteData(id){ Swal.fire({ title: 'PERINGATAN!', text: "Yakin ingin menghapus data Petugas?", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yakin', cancelButtonText: 'Batal', }).then((result) => { if (result.value) { $('#delete'+id).submit(); } }) } @endsection