MIF_E31221322/resources/views/assessment/index.blade.php

264 lines
15 KiB
PHP

@extends('layouts.app')
@push('title', 'Data Penilaian')
@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">Riwayat Penilaian</h4>
</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">Riwayat Penilaian</h4>
</div>
<!-- end card header -->
<div class="card-body">
<div id="customerList">
<div class="row g-4 mb-3">
<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="land_name">
Nama Pemilik
</th>
<th class="sort" data-sort="land_name">
Petugas
</th>
<th class="sort" data-sort="threshold">Rekomendasi</th>
<th class="sort" data-sort="status">
CF Value
</th>
<th class="sort" data-sort="action">Action</th>
</tr>
</thead>
<tbody class="list form-check-all">
@foreach ($evaluations as $evaluation)
<tr class="text-center">
<td>{{ $loop->iteration }}</td>
<td class="id" style="display: none">
<a href="javascript:void(0);"
class="fw-medium link-primary">#VZ2101</a>
</td>
<td class="customer_name">{{ $evaluation->land->owner }}</td>
<td class="customer_name">{{ $evaluation->user->name }}</td>
<td class="threshold text_capitalize">{{ $evaluation->threshold_value }}
</td>
<td class="status">
@if ($evaluation->cf_value < 0)
<span>0%<span>
@else
<span>{{ number_format($evaluation->cf_value, 4) * 100 }}%</span>
@endif
</td>
<td>
<div class="d-flex gap-2 justify-content-center">
<div class="edit">
<button class="btn btn-sm btn-primary edit-item-btn"
data-bs-toggle="modal" data-bs-target="#detailModal"
onclick="detailData({{ $evaluation->evaluationDetails }})">
Detail
</button>
</div>
{{-- <div class="remove">
<button class="btn btn-sm btn-success remove-item-btn"
data-bs-toggle="modal" data-bs-target="#deleteRecordModal">
Remove
</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="#">
Sebelumnya
</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>
<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="customername-field" class="form-label">Customer Name</label>
<input type="text" id="customername-field" class="form-control"
placeholder="Enter Name" required />
</div>
<div class="mb-3">
<label for="email-field" class="form-label">Email</label>
<input type="email" id="email-field" class="form-control"
placeholder="Enter Email" required />
</div>
<div class="mb-3">
<label for="phone-field" class="form-label">Phone</label>
<input type="text" id="phone-field" class="form-control"
placeholder="Enter Phone no." required />
</div>
<div class="mb-3">
<label for="date-field" class="form-label">Joining Date</label>
<input type="text" id="date-field" class="form-control" placeholder="Select Date"
required />
</div>
<div>
<label for="status-field" class="form-label">Status</label>
<select class="form-control" data-trigger name="status-field" id="status-field">
<option value="">Status</option>
<option value="Active">Active</option>
<option value="Block">Block</option>
</select>
</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">
Close
</button>
<button type="submit" class="btn btn-primary" id="add-btn">
Add Customer
</button>
<button type="button" class="btn btn-primary" id="edit-btn">
Update
</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="modal fade" id="detailModal" 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">Detail Penilaian</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"
id="close-modal"></button>
</div>
<div class="modal-body" id="detail-body">
</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>
</div>
</div>
</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>Are you sure ?</h4>
<p class="text-muted mx-4 mb-0">
Are you sure you want to remove this record ?
</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">
Close
</button>
<button type="button" class="btn w-sm btn-primary" id="delete-record">
Yes, Delete It!
</button>
</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/assessment/index.js"></script>
@endpush
@endsection