- **Controller (NocController)**: - Perbaikan nama route pada **index()** dari `noc.pembayaran` menjadi `noc.pembayaran.index`. - Menghapus komentar kode tak terpakai pada logika update **status permohonan** di metode penyimpanan. - **Blade Views**: - Perbaikan konsistensi atribut HTML dan struktur elemen di berbagai template: `index.blade.php`, `pembayaran.blade.php`, dan `form.blade.php`. - Penghapusan spasi yang tidak diperlukan dan optimasi indentasi pada atribut elemen seperti `class`, `data-*`, dan lainnya. - Perbaikan label input dan placeholder untuk keterbacaan dan kesesuaian desain. - Penyelarasan nama variabel dan logika validasi berdasarkan kondisi file dan data yang ada. - **Form NOC**: - Penyesuaian form handling untuk berbagai atribut seperti `status_pembayar`, `nominal_bayar`, dan `bukti_ksl`. - Penyesuaian aksi form untuk **update** atau **store** tergantung kondisi form. - **Datatables**: - Pengoptimalan tabel untuk hierarki atribut dan nilai default seperti pagination, sorting, atau data filtering.
262 lines
15 KiB
PHP
262 lines
15 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumbs')
|
|
{{ Breadcrumbs::render(request()->route()->getName()) }}
|
|
@endsection
|
|
|
|
@php
|
|
$hasMemo = false;
|
|
try {
|
|
$memoPath = $persetujuanPenawaran->noc->memo_penyelesaian ?? null;
|
|
$hasMemo = isset($memoPath) && !empty($memoPath) && Storage::disk('public')->exists($memoPath);
|
|
} catch (Exception $e) {
|
|
// Jika terjadi error, $hasMemo tetap false
|
|
}
|
|
@endphp
|
|
|
|
@section('content')
|
|
<div class="grid gap-5 mx-auto w-full lg:gap-7.5">
|
|
<div class="pb-2.5 border card border-agi-100">
|
|
<div class="card-header bg-agi-50" id="basic_settings">
|
|
<div class="flex flex-row gap-1.5 card-title">
|
|
{{ $hasMemo ? 'Proses Penyelesaian NOC' : 'NOC' }}
|
|
</div>
|
|
<div class="flex gap-2 items-center">
|
|
<a href="{{ route('noc.index') }}" class="btn btn-xs btn-info"><i class="ki-filled ki-exit-left"></i>
|
|
Back</a>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action="{{ !$hasMemo ? route('noc.store') : route('noc.update', $persetujuanPenawaran) }}"
|
|
method="POST" class="grid gap-5" enctype="multipart/form-data">
|
|
@csrf
|
|
@if ($hasMemo)
|
|
@method('PUT')
|
|
@endif
|
|
<input type="hidden" name="penawaran_id"
|
|
value="{{ $persetujuanPenawaran->penawaran_id ?? old('penawaran_id') }}">
|
|
<input type="hidden" name="persetujuan_penawaran_id"
|
|
value="{{ $persetujuanPenawaran->id ?? old('persetujuan_penawaran_id') }}">
|
|
<input type="hidden" name="permohonan_id"
|
|
value="{{ $persetujuanPenawaran->penawaran->permohonan->id ?? $persetujuanPenawaran->permohonan->id }}">
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Status Bayar
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<select
|
|
class="input tomselect w-full @error('status_pembayar') border-danger bg-danger-light @enderror"
|
|
name="status_pembayar" id="status_pembayar" {{ $hasMemo ? 'disabled' : '' }}>
|
|
<option value="">Pilih Status Bayar</option>
|
|
<option value="sudah_bayar"
|
|
{{ old('status_pembayar') == 'sudah_bayar' || $persetujuanPenawaran?->penawaran?->permohonan?->status_bayar == 'sudah_bayar' ? 'selected' : '' }}>
|
|
Sudah Bayar</option>
|
|
<option value="belum_bayar"
|
|
{{ old('status_pembayar') == 'belum_bayar' || $persetujuanPenawaran?->penawaran?->permohonan?->status_bayar == 'belum_bayar' ? 'selected' : '' }}>
|
|
Belum Bayar</option>
|
|
</select>
|
|
@error('status_bayar')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Bukti Pembayaran
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
@if (!empty($persetujuanPenawaran->bukti_bayar))
|
|
<div class="flex items-center mt-2">
|
|
<a href="{{ Storage::url($persetujuanPenawaran->bukti_bayar) }}" target="_blank"
|
|
class="badge badge-sm badge-outline badge-warning">
|
|
<i class="mr-2 ki-filled ki-eye"></i> Lihat File
|
|
</a>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Nominal Bayar
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<input type="number" name="total_harus_bayar" id="total_harus_bayar"
|
|
class="input w-full @error('total_harus_bayar') border-danger bg-danger-light @enderror"
|
|
value="{{ old('total_harus_bayar', $persetujuanPenawaran->nominal_bayar ?? '') }}"
|
|
readonly>
|
|
@error('total_harus_bayar')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Nominal Diterima
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<input type="number" name="nominal_bayar" id="nominal_bayar"
|
|
class="input w-full @error('nominal_bayar') border-danger bg-danger-light @enderror"
|
|
value="{{ old('nominal_bayar', $persetujuanPenawaran->noc->nominal_bayar ?? '') }}"
|
|
placeholder="Masukkan nominal bayar" {{ $hasMemo ? 'readonly' : '' }}>
|
|
@error('nominal_bayar')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Tanggal Pembayaran
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<input type="date" name="tanggal_pembayaran" id="tanggal_pembayaran"
|
|
class="input w-full @error('tanggal_pembayaran') border-danger bg-danger-light @enderror"
|
|
value="{{ old('tanggal_pembayaran', isset($persetujuanPenawaran->noc->tanggal_pembayaran) ? date('Y-m-d', strtotime($persetujuanPenawaran->noc->tanggal_pembayaran)) : '') }}"
|
|
{{ $hasMemo ? 'readonly' : '' }}>
|
|
@error('tanggal_pembayaran')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Bukti KSL
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
@if (!$hasMemo)
|
|
<input type="file" name="bukti_ksl" id="bukti_ksl"
|
|
class="file-input w-full @error('bukti_ksl') border-danger bg-danger-light @enderror"
|
|
accept=".pdf,.jpg,.jpeg,.png">
|
|
@error('bukti_ksl')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
@endif
|
|
|
|
@if (isset($persetujuanPenawaran->noc->bukti_ksl) && !empty($persetujuanPenawaran->noc->bukti_ksl))
|
|
<div class="flex items-center mt-2">
|
|
<a href="{{ Storage::url($persetujuanPenawaran->noc->bukti_ksl) }}" target="_blank"
|
|
class="badge badge-sm badge-outline badge-warning">
|
|
<i class="mr-2 ki-filled ki-eye"></i> Lihat File
|
|
</a>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
@if ($hasMemo)
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Memo Penyelesaian
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<div class="flex items-center">
|
|
<a href="{{ Storage::url($persetujuanPenawaran->noc->memo_penyelesaian) }}"
|
|
target="_blank" class="badge badge-sm badge-outline badge-warning">
|
|
<i class="mr-2 ki-filled ki-eye"></i> Lihat File
|
|
</a>
|
|
<input type="hidden" name="memo_penyelesaian_existing"
|
|
value="{{ $persetujuanPenawaran->noc->memo_penyelesaian }}">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Bukti Penyelesaian
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<input type="file" name="bukti_penyelesaian" id="bukti_penyelesaian"
|
|
class="file-input w-full @error('bukti_penyelesaian') border-danger bg-danger-light @enderror"
|
|
accept=".pdf,.jpg,.jpeg,.png">
|
|
@error('bukti_penyelesaian')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
|
|
@if (isset($persetujuanPenawaran->noc->bukti_penyelesaian) && !empty($persetujuanPenawaran->noc->bukti_penyelesaian))
|
|
<div class="flex items-center mt-2">
|
|
<a href="{{ Storage::url($persetujuanPenawaran->noc->bukti_penyelesaian) }}"
|
|
target="_blank" class="badge badge-sm badge-outline badge-warning">
|
|
<i class="mr-2 ki-filled ki-eye"></i> Lihat File
|
|
</a>
|
|
<input type="hidden" name="bukti_penyelesaian_existing"
|
|
value="{{ $persetujuanPenawaran->noc->bukti_penyelesaian }}">
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Nominal Penyelesaian
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<input type="number" name="nominal_penyelesaian" id="nominal_penyelesaian"
|
|
class="input w-full @error('nominal_penyelesaian') border-danger bg-danger-light @enderror"
|
|
value="{{ old('nominal_penyelesaian', $persetujuanPenawaran->noc->nominal_penyelesaian ?? '') }}"
|
|
placeholder="Masukkan nominal penyelesaian">
|
|
@error('nominal_penyelesaian')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Tanggal Penyelesaian
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<input type="date" name="tanggal_penyelesaian" id="tanggal_penyelesaian"
|
|
class="input w-full @error('tanggal_penyelesaian') border-danger bg-danger-light @enderror"
|
|
value="{{ old('tanggal_penyelesaian', isset($persetujuanPenawaran->noc->tanggal_penyelesaian) ? date('Y-m-d', strtotime($persetujuanPenawaran->noc->tanggal_penyelesaian)) : '') }}">
|
|
@error('tanggal_penyelesaian')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Catatan
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<textarea name="catatan" id="catatan" rows="4"
|
|
class="textarea w-full @error('catatan') border-danger bg-danger-light @enderror" readonly
|
|
placeholder="Masukkan catatan">{{ old('catatan', $persetujuanPenawaran->catatan ?? '') }}</textarea>
|
|
@error('catatan')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap gap-2.5 items-baseline lg:flex-nowrap">
|
|
<label class="form-label max-w-56">
|
|
Catatan NOC
|
|
</label>
|
|
<div class="flex flex-wrap items-baseline w-full">
|
|
<textarea name="catatan_noc" id="catatan_noc" rows="4"
|
|
class="textarea w-full @error('catatan_noc') border-danger bg-danger-light @enderror"
|
|
placeholder="Masukkan catatan noc">{{ old('catatan_noc', $persetujuanPenawaran->noc->catatan_noc ?? '') }}</textarea>
|
|
@error('catatan_noc')
|
|
<em class="text-sm alert text-danger">{{ $message }}</em>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex justify-end">
|
|
<button type="submit" class="btn btn-primary">
|
|
Proses
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|