feat/master-user: create master-user page with crud func
This commit is contained in:
parent
a4413389f8
commit
ebfcf13ba0
|
@ -0,0 +1,155 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\MasterData;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Mail\ActivationAccountMail;
|
||||
use App\Models\User;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Facades\Mail;
|
||||
use Illuminate\Support\Facades\Validator;
|
||||
use Illuminate\Support\Str;
|
||||
use PhpParser\Node\Expr\FuncCall;
|
||||
|
||||
class UserController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$users = User::orderBy('created_at', 'desc')->get();
|
||||
return view('master-data.pengguna.index', compact('users'));
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
|
||||
$customMessage = [
|
||||
'fullname.required' => 'Nama wajib diisi',
|
||||
'fullname.max' => 'Nama maksimal 255 karakter',
|
||||
'fullname.string' => 'Nama harus berupa string',
|
||||
|
||||
'username.required' => 'Username wajib diisi',
|
||||
'username.max' => 'Username maksimal 12 karakter',
|
||||
'username.string' => 'Username harus berupa string',
|
||||
|
||||
'email.required' => 'Email wajib diisi',
|
||||
'email.email' => 'Email tidak valid',
|
||||
'email.unique' => 'Email sudah terdaftar',
|
||||
|
||||
'role.required' => 'Role wajib diisi',
|
||||
'role.in' => 'Role tidak valid',
|
||||
|
||||
'status.required' => 'Status wajib diisi',
|
||||
'status.in' => 'Status tidak valid',
|
||||
];
|
||||
|
||||
$validator = Validator::make($request->all(), [
|
||||
'fullname' => 'required|string|max:255',
|
||||
'username' => 'required|string|max:12',
|
||||
'email' => 'required|string|email|max:255|unique:users',
|
||||
'role' => 'required|in:admin,user',
|
||||
'status' => 'required|in:1,0',
|
||||
], $customMessage);
|
||||
|
||||
if ($validator->fails()) {
|
||||
toast($validator->messages()->all()[0], 'error')->position('top')->autoclose(3000);
|
||||
return redirect()->back()->withInput();
|
||||
}
|
||||
|
||||
$user = new User();
|
||||
$user->name = $request->fullname;
|
||||
$user->username = $request->username;
|
||||
$user->email = $request->email;
|
||||
$user->password = Hash::make("12344321");
|
||||
$user->role = $request->role;
|
||||
|
||||
if ($request->status == 0) {
|
||||
$activationCode = Str::random(4);
|
||||
$user->activation_code = $activationCode;
|
||||
$user->is_active = 0;
|
||||
} else {
|
||||
$user->is_active = $request->status;
|
||||
}
|
||||
|
||||
|
||||
try {
|
||||
$user->save();
|
||||
toast('Pengguna berhasil ditambahkan', 'success')->position('top-right')->autoclose(3000);
|
||||
return redirect()->back();
|
||||
} catch (\Throwable $th) {
|
||||
toast('Terjadi kesalahan', 'error')->position('top')->autoclose(3000);
|
||||
return redirect()->back();
|
||||
}
|
||||
}
|
||||
|
||||
public function update(Request $request, $id)
|
||||
{
|
||||
$customMessage = [
|
||||
'fullname.required' => 'Nama wajib diisi',
|
||||
'fullname.max' => 'Nama maksimal 255 karakter',
|
||||
'fullname.string' => 'Nama harus berupa string',
|
||||
|
||||
'username.required' => 'Username wajib diisi',
|
||||
'username.max' => 'Username maksimal 12 karakter',
|
||||
'username.string' => 'Username harus berupa string',
|
||||
|
||||
'email.required' => 'Email wajib diisi',
|
||||
'email.email' => 'Email tidak valid',
|
||||
'email.unique' => 'Email sudah terdaftar',
|
||||
|
||||
'role.required' => 'Role wajib diisi',
|
||||
'role.in' => 'Role tidak valid',
|
||||
|
||||
'status.required' => 'Status wajib diisi',
|
||||
'status.in' => 'Status tidak valid',
|
||||
];
|
||||
|
||||
$validator = Validator::make($request->all(), [
|
||||
'fullname' => 'required|string|max:255',
|
||||
'username' => 'required|string|max:12',
|
||||
'email' => 'required|string|email|max:255|unique:users,email,' . $id,
|
||||
'role' => 'required|in:admin,user',
|
||||
'status' => 'required|in:1,0',
|
||||
], $customMessage);
|
||||
|
||||
if ($validator->fails()) {
|
||||
toast($validator->messages()->all()[0], 'error')->position('top')->autoclose(3000);
|
||||
return redirect()->back()->withInput();
|
||||
}
|
||||
|
||||
$user = User::find($id);
|
||||
$user->name = $request->fullname;
|
||||
$user->username = $request->username;
|
||||
$user->email = $request->email;
|
||||
$user->role = $request->role;
|
||||
$user->is_active = $request->status;
|
||||
|
||||
try {
|
||||
$user->save();
|
||||
toast('Pengguna berhasil diubah', 'success')->position('top-right')->autoclose(3000);
|
||||
return redirect()->back();
|
||||
} catch (\Throwable $th) {
|
||||
toast('Terjadi kesalahan', 'error')->position('top')->autoclose(3000);
|
||||
return redirect()->back();
|
||||
}
|
||||
}
|
||||
|
||||
public function destroy($id)
|
||||
{
|
||||
$user = User::find($id);
|
||||
|
||||
if ($user == null) {
|
||||
toast('Pengguna tidak ditemukan', 'error')->position('top')->autoclose(3000);
|
||||
return redirect()->back();
|
||||
}
|
||||
|
||||
try {
|
||||
$user->delete();
|
||||
toast('Pengguna berhasil dihapus', 'success')->position('top-right')->autoclose(3000);
|
||||
return redirect()->back();
|
||||
} catch (\Throwable $th) {
|
||||
toast('Terjadi kesalahan', 'error')->position('top')->autoclose(3000);
|
||||
return redirect()->back();
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,341 @@
|
|||
function updateData(user) {
|
||||
var form = document.getElementById("edit-form");
|
||||
var fullname = document.getElementById("fullname-edit-field");
|
||||
var username = document.getElementById("username-edit-field");
|
||||
var email = document.getElementById("email-edit-field");
|
||||
var role = document.getElementById("role-edit-field");
|
||||
var status = document.getElementById("status-edit-field");
|
||||
|
||||
fullname.value = user.name;
|
||||
username.value = user.username;
|
||||
email.value = user.email;
|
||||
role.value = user.role;
|
||||
status.value = user.is_active;
|
||||
form.action = "/data-pengguna/" + user.id;
|
||||
}
|
||||
|
||||
function deleteData(id) {
|
||||
var form = document.getElementById("delete-form");
|
||||
form.action = "/data-pengguna/" + id;
|
||||
}
|
||||
|
||||
var perPage = 10,
|
||||
options = {
|
||||
valueNames: ["id", "fullname", "email", "username", "role", "status"],
|
||||
page: perPage,
|
||||
pagination: !0,
|
||||
plugins: [ListPagination({ left: 2, right: 2 })],
|
||||
},
|
||||
customerList = new List("customerList", options).on(
|
||||
"updated",
|
||||
function (e) {
|
||||
0 == e.matchingItems.length
|
||||
? (document.getElementsByClassName(
|
||||
"noresult"
|
||||
)[0].style.display = "block")
|
||||
: (document.getElementsByClassName(
|
||||
"noresult"
|
||||
)[0].style.display = "none");
|
||||
var t = 1 == e.i,
|
||||
a = e.i > e.matchingItems.length - e.page;
|
||||
document.querySelector(".pagination-prev.disabled") &&
|
||||
document
|
||||
.querySelector(".pagination-prev.disabled")
|
||||
.classList.remove("disabled"),
|
||||
document.querySelector(".pagination-next.disabled") &&
|
||||
document
|
||||
.querySelector(".pagination-next.disabled")
|
||||
.classList.remove("disabled"),
|
||||
t &&
|
||||
document
|
||||
.querySelector(".pagination-prev")
|
||||
.classList.add("disabled"),
|
||||
a &&
|
||||
document
|
||||
.querySelector(".pagination-next")
|
||||
.classList.add("disabled"),
|
||||
e.matchingItems.length <= perPage
|
||||
? (document.querySelector(
|
||||
".pagination-wrap"
|
||||
).style.display = "none")
|
||||
: (document.querySelector(
|
||||
".pagination-wrap"
|
||||
).style.display = "flex"),
|
||||
e.matchingItems.length == perPage &&
|
||||
document
|
||||
.querySelector(".pagination.listjs-pagination")
|
||||
.firstElementChild.children[0].click(),
|
||||
0 < e.matchingItems.length
|
||||
? (document.getElementsByClassName(
|
||||
"noresult"
|
||||
)[0].style.display = "none")
|
||||
: (document.getElementsByClassName(
|
||||
"noresult"
|
||||
)[0].style.display = "block");
|
||||
}
|
||||
);
|
||||
isCount = new DOMParser().parseFromString(
|
||||
customerList.items.slice(-1)[0]._values.id,
|
||||
"text/html"
|
||||
);
|
||||
var isValue = isCount.body.firstElementChild.innerHTML,
|
||||
idField = document.getElementById("id-field"),
|
||||
customerNameField = document.getElementById("customername-field"),
|
||||
emailField = document.getElementById("email-field"),
|
||||
dateField = document.getElementById("date-field"),
|
||||
phoneField = document.getElementById("phone-field"),
|
||||
statusField = document.getElementById("status-field"),
|
||||
addBtn = document.getElementById("add-btn"),
|
||||
editBtn = document.getElementById("edit-btn"),
|
||||
removeBtns = document.getElementsByClassName("remove-item-btn"),
|
||||
editBtns = document.getElementsByClassName("edit-item-btn");
|
||||
function filterContact(e) {
|
||||
var t = e;
|
||||
customerList.filter(function (e) {
|
||||
matchData = new DOMParser().parseFromString(
|
||||
e.values().status,
|
||||
"text/html"
|
||||
);
|
||||
e = matchData.body.firstElementChild.innerHTML;
|
||||
return "All" == e || "All" == t || e == t;
|
||||
}),
|
||||
customerList.update();
|
||||
}
|
||||
function updateList() {
|
||||
var a = document.querySelector("input[name=status]:checked").value;
|
||||
(data = userList.filter(function (e) {
|
||||
var t = !1;
|
||||
return (
|
||||
"All" == a
|
||||
? (t = !0)
|
||||
: ((t = e.values().sts == a), console.log(t, "statusFilter")),
|
||||
t
|
||||
);
|
||||
})),
|
||||
userList.update();
|
||||
}
|
||||
refreshCallbacks(),
|
||||
filterContact("All"),
|
||||
document
|
||||
.getElementById("showModal")
|
||||
.addEventListener("show.bs.modal", function (e) {
|
||||
e.relatedTarget.classList.contains("edit-item-btn")
|
||||
? ((document.getElementById("exampleModalLabel").innerHTML =
|
||||
"Edit Data Customer"),
|
||||
(document
|
||||
.getElementById("showModal")
|
||||
.querySelector(".modal-footer").style.display = "block"),
|
||||
(document.getElementById("add-btn").style.display = "none"),
|
||||
(document.getElementById("edit-btn").style.display = "block"))
|
||||
: e.relatedTarget.classList.contains("add-btn")
|
||||
? ((document.getElementById("exampleModalLabel").innerHTML =
|
||||
"Tambah Data Pengguna"),
|
||||
(document
|
||||
.getElementById("showModal")
|
||||
.querySelector(".modal-footer").style.display = "block"),
|
||||
(document.getElementById("edit-btn").style.display = "none"),
|
||||
(document.getElementById("add-btn").style.display = "block"))
|
||||
: ((document.getElementById("exampleModalLabel").innerHTML =
|
||||
"List Customer"),
|
||||
(document
|
||||
.getElementById("showModal")
|
||||
.querySelector(".modal-footer").style.display = "none"));
|
||||
}),
|
||||
ischeckboxcheck(),
|
||||
document
|
||||
.getElementById("showModal")
|
||||
.addEventListener("hidden.bs.modal", function () {
|
||||
clearFields();
|
||||
}),
|
||||
document
|
||||
.querySelector("#customerList")
|
||||
.addEventListener("click", function () {
|
||||
refreshCallbacks(), ischeckboxcheck();
|
||||
});
|
||||
var table = document.getElementById("customerTable"),
|
||||
tr = table.getElementsByTagName("tr"),
|
||||
trlist = table.querySelectorAll(".list tr"),
|
||||
count = Number(isValue.replace(/[^0-9]/g, "")) + 1;
|
||||
addBtn.addEventListener("click", function (e) {
|
||||
"" !== customerNameField.value &&
|
||||
"" !== emailField.value &&
|
||||
"" !== dateField.value &&
|
||||
"" !== phoneField.value &&
|
||||
(customerList.add({
|
||||
id:
|
||||
'<a href="javascript:void(0);" class="fw-medium link-primary">#VZ' +
|
||||
count +
|
||||
"</a>",
|
||||
customer_name: customerNameField.value,
|
||||
email: emailField.value,
|
||||
date: dateField.value,
|
||||
phone: phoneField.value,
|
||||
status: isStatus(statusField.value),
|
||||
}),
|
||||
document.getElementById("close-modal").click(),
|
||||
clearFields(),
|
||||
refreshCallbacks(),
|
||||
filterContact("All"),
|
||||
count++);
|
||||
}),
|
||||
editBtn.addEventListener("click", function (e) {
|
||||
(document.getElementById("exampleModalLabel").innerHTML =
|
||||
"Edit Customer"),
|
||||
customerList.get({ id: idField.value }).forEach(function (e) {
|
||||
(isid = new DOMParser().parseFromString(
|
||||
e._values.id,
|
||||
"text/html"
|
||||
)),
|
||||
isid.body.firstElementChild.innerHTML == itemId &&
|
||||
e.values({
|
||||
id:
|
||||
'<a href="javascript:void(0);" class="fw-medium link-primary">' +
|
||||
idField.value +
|
||||
"</a>",
|
||||
customer_name: customerNameField.value,
|
||||
email: emailField.value,
|
||||
date: dateField.value,
|
||||
phone: phoneField.value,
|
||||
status: isStatus(statusField.value),
|
||||
});
|
||||
}),
|
||||
document.getElementById("close-modal").click(),
|
||||
clearFields();
|
||||
});
|
||||
// var statusVal = new Choices(statusField);
|
||||
function isStatus(e) {
|
||||
switch (e) {
|
||||
case "Active":
|
||||
return (
|
||||
'<span class="badge badge-soft-success text-uppercase">' +
|
||||
e +
|
||||
"</span>"
|
||||
);
|
||||
case "Block":
|
||||
return (
|
||||
'<span class="badge badge-soft-danger text-uppercase">' +
|
||||
e +
|
||||
"</span>"
|
||||
);
|
||||
}
|
||||
}
|
||||
function ischeckboxcheck() {
|
||||
document.getElementsByName("checkAll").forEach(function (e) {
|
||||
e.addEventListener("click", function (e) {
|
||||
e.target.checked
|
||||
? e.target.closest("tr").classList.add("table-active")
|
||||
: e.target.closest("tr").classList.remove("table-active");
|
||||
});
|
||||
});
|
||||
}
|
||||
function refreshCallbacks() {
|
||||
removeBtns.forEach(function (e) {
|
||||
e.addEventListener("click", function (e) {
|
||||
e.target.closest("tr").children[1].innerText,
|
||||
(itemId = e.target.closest("tr").children[1].innerText),
|
||||
customerList.get({ id: itemId }).forEach(function (e) {
|
||||
deleteid = new DOMParser().parseFromString(
|
||||
e._values.id,
|
||||
"text/html"
|
||||
);
|
||||
var t = deleteid.body.firstElementChild;
|
||||
deleteid.body.firstElementChild.innerHTML == itemId &&
|
||||
document
|
||||
.getElementById("delete-record")
|
||||
.addEventListener("click", function () {
|
||||
customerList.remove("id", t.outerHTML),
|
||||
document
|
||||
.getElementById("deleteRecordModal")
|
||||
.click();
|
||||
});
|
||||
});
|
||||
});
|
||||
}),
|
||||
editBtns.forEach(function (e) {
|
||||
e.addEventListener("click", function (e) {
|
||||
e.target.closest("tr").children[1].innerText,
|
||||
(itemId = e.target.closest("tr").children[1].innerText),
|
||||
customerList.get({ id: itemId }).forEach(function (e) {
|
||||
isid = new DOMParser().parseFromString(
|
||||
e._values.id,
|
||||
"text/html"
|
||||
);
|
||||
var t = isid.body.firstElementChild.innerHTML;
|
||||
t == itemId &&
|
||||
((idField.value = t),
|
||||
(customerNameField.value = e._values.customer_name),
|
||||
(emailField.value = e._values.email),
|
||||
(dateField.value = e._values.date),
|
||||
(phoneField.value = e._values.phone),
|
||||
statusVal && statusVal.destroy(),
|
||||
(statusVal = new Choices(statusField)),
|
||||
(val = new DOMParser().parseFromString(
|
||||
e._values.status,
|
||||
"text/html"
|
||||
)),
|
||||
(t = val.body.firstElementChild.innerHTML),
|
||||
statusVal.setChoiceByValue(t),
|
||||
flatpickr("#date-field", {
|
||||
dateFormat: "d M, Y",
|
||||
defaultDate: e._values.date,
|
||||
}));
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
function clearFields() {
|
||||
(customerNameField.value = ""),
|
||||
(emailField.value = ""),
|
||||
(dateField.value = ""),
|
||||
(phoneField.value = "");
|
||||
}
|
||||
document
|
||||
.querySelector(".pagination-next")
|
||||
.addEventListener("click", function () {
|
||||
!document.querySelector(".pagination.listjs-pagination") ||
|
||||
(document
|
||||
.querySelector(".pagination.listjs-pagination")
|
||||
.querySelector(".active") &&
|
||||
document
|
||||
.querySelector(".pagination.listjs-pagination")
|
||||
.querySelector(".active")
|
||||
.nextElementSibling.children[0].click());
|
||||
}),
|
||||
document
|
||||
.querySelector(".pagination-prev")
|
||||
.addEventListener("click", function () {
|
||||
!document.querySelector(".pagination.listjs-pagination") ||
|
||||
(document
|
||||
.querySelector(".pagination.listjs-pagination")
|
||||
.querySelector(".active") &&
|
||||
document
|
||||
.querySelector(".pagination.listjs-pagination")
|
||||
.querySelector(".active")
|
||||
.previousSibling.children[0].click());
|
||||
});
|
||||
var attroptions = {
|
||||
valueNames: [
|
||||
"name",
|
||||
"born",
|
||||
{ data: ["id"] },
|
||||
{ attr: "src", name: "image" },
|
||||
{ attr: "href", name: "link" },
|
||||
{ attr: "data-timestamp", name: "timestamp" },
|
||||
],
|
||||
},
|
||||
attrList = new List("users", attroptions);
|
||||
attrList.add({
|
||||
name: "Leia",
|
||||
born: "1954",
|
||||
image: "assets/images/users/avatar-5.jpg",
|
||||
id: 5,
|
||||
timestamp: "67893",
|
||||
});
|
||||
var existOptionsList = { valueNames: ["contact-name", "contact-message"] },
|
||||
existList = new List("contact-existing-list", existOptionsList),
|
||||
fuzzySearchList = new List("fuzzysearch-list", { valueNames: ["name"] }),
|
||||
paginationList = new List("pagination-list", {
|
||||
valueNames: ["pagi-list"],
|
||||
page: 3,
|
||||
pagination: !0,
|
||||
});
|
|
@ -591,6 +591,7 @@ class="form-check-input">
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@include('sweetalert::alert')
|
||||
|
||||
<!-- JAVASCRIPT -->
|
||||
<script src="assets/libs/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||
|
@ -600,6 +601,8 @@ class="form-check-input">
|
|||
<script src="assets/js/pages/plugins/lord-icon-2.1.0.js"></script>
|
||||
<script src="assets/js/plugins.js"></script>
|
||||
|
||||
@stack('other-js')
|
||||
|
||||
<!-- App js -->
|
||||
<script src="assets/js/app.js"></script>
|
||||
</body>
|
||||
|
|
|
@ -0,0 +1,353 @@
|
|||
@extends('layouts.app')
|
||||
@push('title', 'Data Pengguna')
|
||||
@section('content')
|
||||
<div class="page-content">
|
||||
<div class="container-fluid">
|
||||
|
||||
<!-- start page title -->
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
|
||||
<h4 class="mb-sm-0">Data Pengguna</h4>
|
||||
|
||||
<div class="page-title-right">
|
||||
<ol class="breadcrumb m-0">
|
||||
<li class="breadcrumb-item"><a href="javascript: void(0);">Master Data</a></li>
|
||||
<li class="breadcrumb-item active">Data Pengguna</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end page title -->
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h4 class="card-title mb-0">Data Pengguna</h4>
|
||||
</div><!-- end card header -->
|
||||
|
||||
<div class="card-body">
|
||||
<div id="customerList">
|
||||
<div class="row g-4 mb-3">
|
||||
<div class="col-sm-auto">
|
||||
<div>
|
||||
<button type="button" class="btn btn-success add-btn" data-bs-toggle="modal"
|
||||
id="create-btn" data-bs-target="#showModal"><i
|
||||
class="ri-add-line align-bottom me-1"></i> Tambah</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<div class="d-flex justify-content-sm-end">
|
||||
<div class="search-box ms-2">
|
||||
<input type="text" class="form-control search" placeholder="Search...">
|
||||
<i class="ri-search-line search-icon"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="table-responsive table-card mt-3 mb-1">
|
||||
<table class="table align-middle table-nowrap" id="customerTable">
|
||||
<thead class="table-light">
|
||||
<tr class="text-center">
|
||||
<th class="sort" data-sort="no">
|
||||
No
|
||||
</th>
|
||||
<th class="sort" data-sort="fullname">Nama Lengkap</th>
|
||||
<th class="sort" data-sort="username">Username</th>
|
||||
<th class="sort" data-sort="email">Email</th>
|
||||
<th class="sort" data-sort="role">Role</th>
|
||||
<th class="sort" data-sort="status">Status</th>
|
||||
<th class="sort" data-sort="action">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="list form-check-all">
|
||||
@foreach ($users as $user)
|
||||
<tr class="text-center">
|
||||
<th class="no">
|
||||
{{ $loop->iteration }}
|
||||
</th>
|
||||
<td class="id" style="display:none;"><a href="javascript:void(0);"
|
||||
class="fw-medium link-primary">#VZ2101</a></td>
|
||||
<td class="fullname">{{ $user->name }}</td>
|
||||
<td class="username">{{ $user->username }}</td>
|
||||
<td class="email">{{ $user->email }}</td>
|
||||
<td class="role text-capitalize">{{ $user->role }}</td>
|
||||
<td class="status">
|
||||
@if ($user->is_active == 0)
|
||||
<span class="badge badge-soft-danger text-uppercase">Tidak
|
||||
Aktif</span>
|
||||
@else
|
||||
<span
|
||||
class="badge badge-soft-success text-uppercase">Aktif</span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
<div class="d-flex gap-2 justify-content-center">
|
||||
<div class="edit">
|
||||
<button class="btn btn-sm btn-warning edit-item-btn"
|
||||
data-bs-toggle="modal" data-bs-target="#editModal"
|
||||
onclick="updateData({{ $user }})">Edit</button>
|
||||
</div>
|
||||
<div class="remove">
|
||||
<button class="btn btn-sm btn-danger remove-item-btn"
|
||||
data-bs-toggle="modal"
|
||||
data-bs-target="#deleteRecordModal"
|
||||
onclick="deleteData({{ $user->id }})">Hapus</button>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="noresult" style="display: none">
|
||||
<div class="text-center">
|
||||
<lord-icon src="https://cdn.lordicon.com/msoeawqm.json" trigger="loop"
|
||||
colors="primary:#25a0e2,secondary:#00bd9d" style="width:75px;height:75px">
|
||||
</lord-icon>
|
||||
<h5 class="mt-2">Maaf! Data Tidak Ditemukan</h5>
|
||||
<p class="text-muted mb-0">Silahkan gunakan kata kunci lain</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-flex justify-content-end">
|
||||
<div class="pagination-wrap hstack gap-2">
|
||||
<a class="page-item pagination-prev disabled" href="#">
|
||||
Kembali
|
||||
</a>
|
||||
<ul class="pagination listjs-pagination mb-0"></ul>
|
||||
<a class="page-item pagination-next" href="#">
|
||||
Selanjutnya
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- end card -->
|
||||
</div>
|
||||
<!-- end col -->
|
||||
</div>
|
||||
<!-- end col -->
|
||||
</div>
|
||||
<!-- end row -->
|
||||
|
||||
<div class="modal fade" id="showModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header bg-light p-3">
|
||||
<h5 class="modal-title" id="exampleModalLabel"></h5>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"
|
||||
id="close-modal"></button>
|
||||
</div>
|
||||
<form action="{{ route('master_data.pengguna.store') }}" class="needs-validation" method="POST"
|
||||
novalidate>
|
||||
@csrf
|
||||
<div class="modal-body">
|
||||
|
||||
<div class="mb-3" id="modal-id" style="display: none;">
|
||||
<label for="id-field" class="form-label">ID</label>
|
||||
<input type="text" id="id-field" class="form-control" placeholder="ID"
|
||||
readonly />
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="fullname-field" class="form-label">Nama Lengkap</label>
|
||||
<input type="text" id="fullname-field" class="form-control" name="fullname"
|
||||
placeholder="Masukan Nama Lengkap" value="{{ old('fullname') }}" required />
|
||||
<div class="invalid-feedback">
|
||||
Masukan Nama Lengkap
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="username-field" class="form-label">Username</label>
|
||||
<input type="text" id="username-field" class="form-control" name="username"
|
||||
placeholder="Masukan Username." value="{{ old('username') }}" required />
|
||||
<div class="invalid-feedback">
|
||||
Masukan Username
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="email-field" class="form-label">Email</label>
|
||||
<input type="email" id="email-field" class="form-control" name="email"
|
||||
placeholder="Enter Email" value="{{ old('email') }}" required />
|
||||
<div class="invalid-feedback">
|
||||
Masukan Email
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="date-field" class="form-label">Role</label>
|
||||
<select name="role" id="role-field" data-trigger class="form-control" required>
|
||||
<option value="" selected disabled>Pilih Role</option>
|
||||
<option value="admin">Admin</option>
|
||||
<option value="user">User</option>
|
||||
</select>
|
||||
<div class="invalid-feedback">
|
||||
Pilih Role
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label for="status-field" class="form-label">Status</label>
|
||||
<select class="form-control" data-trigger name="status" id="status-field" required>
|
||||
<option value="" selected disabled>Pilih Status</option>
|
||||
<option value="1">Aktif</option>
|
||||
<option value="0">Tidak Aktif</option>
|
||||
</select>
|
||||
<div class="invalid-feedback">
|
||||
Pilih Status
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<div class="hstack gap-2 justify-content-end">
|
||||
<button type="button" class="btn btn-light" data-bs-dismiss="modal">Tutup</button>
|
||||
<button type="submit" class="btn btn-success" id="add-btn">Tambah</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{-- edit modal --}}
|
||||
<div class="modal fade" id="editModal" tabindex="-1" aria-labelledby="exampleModalLabel"
|
||||
aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header bg-light p-3">
|
||||
<h5 class="modal-title" id="exampleModalLabel">Edit Data Pengguna</h5>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"
|
||||
id="close-modal"></button>
|
||||
</div>
|
||||
<form action="" class="needs-validation" method="POST" novalidate id="edit-form">
|
||||
@csrf
|
||||
@method('PUT')
|
||||
<div class="modal-body">
|
||||
|
||||
<div class="mb-3" id="modal-id" style="display: none;">
|
||||
<label for="id-field" class="form-label">ID</label>
|
||||
<input type="text" id="id-field" class="form-control" placeholder="ID"
|
||||
readonly />
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="fullname-field" class="form-label">Nama Lengkap</label>
|
||||
<input type="text" id="fullname-edit-field" class="form-control" name="fullname"
|
||||
placeholder="Masukan Nama Lengkap" value="{{ old('fullname') }}" required />
|
||||
<div class="invalid-feedback">
|
||||
Masukan Nama Lengkap
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="username-field" class="form-label">Username</label>
|
||||
<input type="text" id="username-edit-field" class="form-control" name="username"
|
||||
placeholder="Masukan Username." value="{{ old('username') }}" required />
|
||||
<div class="invalid-feedback">
|
||||
Masukan Username
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="email-field" class="form-label">Email</label>
|
||||
<input type="email" id="email-edit-field" class="form-control" name="email"
|
||||
placeholder="Enter Email" value="{{ old('email') }}" required />
|
||||
<div class="invalid-feedback">
|
||||
Masukan Email
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="date-field" class="form-label">Role</label>
|
||||
<select name="role" id="role-edit-field" data-trigger class="form-control"
|
||||
required>
|
||||
<option value="" selected disabled>Pilih Role</option>
|
||||
<option value="admin">Admin</option>
|
||||
<option value="user">User</option>
|
||||
</select>
|
||||
<div class="invalid-feedback">
|
||||
Pilih Role
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label for="status-field" class="form-label">Status</label>
|
||||
<select class="form-control" data-trigger name="status" id="status-edit-field"
|
||||
required>
|
||||
<option value="" selected disabled>Pilih Status</option>
|
||||
<option value="1">Aktif</option>
|
||||
<option value="0">Tidak Aktif</option>
|
||||
</select>
|
||||
<div class="invalid-feedback">
|
||||
Pilih Status
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<div class="hstack gap-2 justify-content-end">
|
||||
<button type="button" class="btn btn-light" data-bs-dismiss="modal">Tutup</button>
|
||||
<button type="submit" class="btn btn-success" id="edit-btn">Ubah</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal -->
|
||||
<div class="modal fade zoomIn" id="deleteRecordModal" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"
|
||||
id="btn-close"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="mt-2 text-center">
|
||||
<lord-icon src="https://cdn.lordicon.com/gsqxdxog.json" trigger="loop"
|
||||
colors="primary:#25a0e2,secondary:#00bd9d"
|
||||
style="width:100px;height:100px"></lord-icon>
|
||||
<div class="mt-4 pt-2 fs-15 mx-4 mx-sm-5">
|
||||
<h4>Anda yakin ?</h4>
|
||||
<p class="text-muted mx-4 mb-0">Anda yakin akan menghapus data ini ?</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="d-flex gap-2 justify-content-center mt-4 mb-2">
|
||||
<button type="button" class="btn w-sm btn-light" data-bs-dismiss="modal">Tutup</button>
|
||||
<form action="" method="POST" id="delete-form">
|
||||
@csrf
|
||||
@method('DELETE')
|
||||
<button type="submit" class="btn w-sm btn-primary" id="delete-record">Ya,
|
||||
Hapus!</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--end modal -->
|
||||
|
||||
</div>
|
||||
<!-- container-fluid -->
|
||||
</div>
|
||||
|
||||
@push('other-js')
|
||||
<!-- prismjs plugin -->
|
||||
<script src="assets/libs/prismjs/prism.js"></script>
|
||||
<script src="assets/libs/list.js/list.min.js"></script>
|
||||
<script src="assets/libs/list.pagination.js/list.pagination.min.js"></script>
|
||||
|
||||
<!-- listjs init -->
|
||||
<script src="assets/js/pages/customJs/master-data/pengguna/index.js"></script>
|
||||
|
||||
<script src="assets/js/pages/form-validation.init.js"></script>
|
||||
@endpush
|
||||
@endsection
|
|
@ -4,11 +4,11 @@
|
|||
<div class="col-sm-6">
|
||||
<script>
|
||||
document.write(new Date().getFullYear())
|
||||
</script> © Velzon.
|
||||
</script> © CornQuest.
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="text-sm-end d-none d-sm-block">
|
||||
Design & Develop by Themesbrand
|
||||
Design & Develop by LAB KSI Politeknik Negeri Jember
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -5,6 +5,7 @@
|
|||
use App\Http\Controllers\Auth\RegisteredUserController;
|
||||
use App\Http\Controllers\Auth\TwoStepVerifyController;
|
||||
use App\Http\Controllers\DashboardController;
|
||||
use App\Http\Controllers\MasterData\UserController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
/*
|
||||
|
@ -55,4 +56,15 @@
|
|||
Route::get('/dashboard-admin', 'admin')->name('admin');
|
||||
Route::get('/dashboard-petugas', 'petugas')->name('petugas');
|
||||
});
|
||||
|
||||
Route::name('master_data.')->group(function () {
|
||||
|
||||
Route::prefix('data-pengguna')->controller(UserController::class)->name('pengguna.')->group(function () {
|
||||
Route::get('/', 'index')->name('index');
|
||||
Route::post('/', 'store')->name('store');
|
||||
Route::put('/{id}', 'update')->name('update');
|
||||
Route::delete('/{id}', 'destroy')->name('destroy');
|
||||
Route::post('/{id}/send-code', 'sendCode')->name('send_code');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue