partial update create crud pbg
This commit is contained in:
@@ -106,7 +106,7 @@
|
||||
<div class="collapse" id="data">
|
||||
<ul class="nav sub-navbar-nav">
|
||||
<li class="sub-nav-item">
|
||||
<a class="sub-nav-link" href="{{ route ('request-assignments.index' ) }}">PBG</a>
|
||||
<a class="sub-nav-link" href="{{ route ('pbg-task.index' ) }}">PBG</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -116,7 +116,7 @@
|
||||
</div>
|
||||
|
||||
|
||||
<!-- <div class="animated-stars">
|
||||
<div class="animated-stars">
|
||||
<div class="shooting-star"></div>
|
||||
<div class="shooting-star"></div>
|
||||
<div class="shooting-star"></div>
|
||||
@@ -137,4 +137,4 @@
|
||||
<div class="shooting-star"></div>
|
||||
<div class="shooting-star"></div>
|
||||
<div class="shooting-star"></div>
|
||||
</div> -->
|
||||
</div>
|
||||
80
resources/views/pbg_task/_form_pbg_task.blade.php
Normal file
80
resources/views/pbg_task/_form_pbg_task.blade.php
Normal file
@@ -0,0 +1,80 @@
|
||||
<div class="card">
|
||||
<form id="step1Form">
|
||||
@csrf
|
||||
<div class="card-body">
|
||||
<h5 class="card-title mb-2">PBG Task</h5>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="uuid">UUID</label>
|
||||
<input type="string" id="uuid" name="uuid" class="form-control" placeholder="Enter UUID">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="name">Name</label>
|
||||
<input type="string" id="name" name="name" class="form-control" placeholder="Enter name">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="owner_name">Owner Name</label>
|
||||
<input type="string" id="owner_name" name="owner_name" class="form-control" placeholder="Enter ornwe name">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="application_type">Application Type</label>
|
||||
<input type="number" id="application_type" name="application_type" class="form-control" placeholder="Enter application type">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="application_type_name">Application Type Name</label>
|
||||
<input type="string" id="application_type_name" name="application_type_name" class="form-control" placeholder="Enter application type name">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="condition">Condition</label>
|
||||
<input type="string" id="condition" name="condition" class="form-control" placeholder="Enter condition">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="registration_number">Registration Number</label>
|
||||
<input type="string" id="registration_number" name="registration_number" class="form-control" placeholder="Enter registration number">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="document_number">Document Number</label>
|
||||
<input type="string" id="document_number" name="document_number" class="form-control" placeholder="Enter document number">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="address">Address</label>
|
||||
<input type="string" id="address" name="address" class="form-control" placeholder="Enter address">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="status">Status</label>
|
||||
<input type="number" id="status" name="status" class="form-control" placeholder="Enter status">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="status_name">Status Name</label>
|
||||
<input type="string" id="status_name" name="status_name" class="form-control" placeholder="Enter status name">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="slf_status">SLF Status</label>
|
||||
<input type="string" id="slf_status" name="slf_status" class="form-control" placeholder="Enter slf status">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="slf_status_name">SLF Status Name</label>
|
||||
<input type="string" id="slf_status_name" name="slf_status_name" class="form-control" placeholder="Enter slf status name">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="function_type">Function Type</label>
|
||||
<input type="string" id="function_type" name="function_type" class="form-control" placeholder="Enter function type">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="consultation_type">Consultation Type</label>
|
||||
<input type="string" id="consultation_type" name="consultation_type" class="form-control" placeholder="Enter cosultation type">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="due_date">Due Date</label>
|
||||
<input type="string" id="due_date" name="due_date" class="form-control" placeholder="Enter due date">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="land_certificate_phase">Land Certificate Phase</label>
|
||||
<input type="boolean" id="land_certificate_phase" name="land_certificate_phase" class="form-control" placeholder="Enter land certificate phase">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="task_created_at">Task Created At</label>
|
||||
<input type="string" id="task_created_at" name="task_created_at" class="form-control" placeholder="Enter task created at">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@@ -0,0 +1,40 @@
|
||||
<div class="card">
|
||||
<form id="step3Form">
|
||||
@csrf
|
||||
<div class="card-body">
|
||||
<h5 class="card-title mb-2">PBG Task Indeks Integration</h5>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="pbg_task_uid">PBG Task UID</label>
|
||||
<input type="string" id="pbg_task_uid" name="pbg_task_uid" class="form-control" placeholder="Enter pbg task uid">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="indeks_fungsi_bangunan">Indeks Fungsi Bangunan</label>
|
||||
<input type="string" id="indeks_fungsi_bangunan" name="indeks_fungsi_bangunan" class="form-control" placeholder="Enter indeks fungsi bangunan">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="indeks_parameter_kompleksitas">Indeks parameter kompleksitas</label>
|
||||
<input type="string" id="indeks_parameter_kompleksitas" name="indeks_parameter_kompleksitas" class="form-control" placeholder="Enter detail updated at">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="indeks_parameter_permanensi">Indeks Parameter Permanensi</label>
|
||||
<input type="string" id="indeks_parameter_permanensi" name="indeks_parameter_permanensi" class="form-control" placeholder="Enter indeks parameter permanensi">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="indeks_parameter_ketinggian">Indeks Parameter Ketinggian</label>
|
||||
<input type="string" id="indeks_parameter_ketinggian" name="indeks_parameter_ketinggian" class="form-control" placeholder="Enter indeks parameter ketinggian">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="faktor_kepemilikan">Faktor Kepemilikan</label>
|
||||
<input type="string" id="faktor_kepemilikan" name="faktor_kepemilikan" class="form-control" placeholder="Enter faktor kepemilikan">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="indeks_terintegrasi">Indeks Terintegrasi</label>
|
||||
<input type="number" id="indeks_terintegrasi" name="indeks_terintegrasi" class="form-control" placeholder="Enter indeks terintegrasi">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="total">Total</label>
|
||||
<input type="string" id="total" name="total" class="form-control" placeholder="Enter total">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
40
resources/views/pbg_task/_form_pbg_task_prasarana.blade.php
Normal file
40
resources/views/pbg_task/_form_pbg_task_prasarana.blade.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<div class="card">
|
||||
<form id="step4Form">
|
||||
@csrf
|
||||
<div class="card-body">
|
||||
<h5 class="card-title mb-2">PBG Task Prasarana</h5>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="pbg_task_uid">PBG Task UID</label>
|
||||
<input type="string" id="pbg_task_uid" name="pbg_task_uid" class="form-control" placeholder="Enter pbg task uid">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="prasarana_id">Prasarana ID</label>
|
||||
<input type="string" id="prasarana_id" name="prasarana_id" class="form-control" placeholder="Enter prasarana id">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="prasarana_type">Prasarana Type</label>
|
||||
<input type="string" id="prasarana_type" name="prasarana_type" class="form-control" placeholder="Enter prasarana type">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="building_type">Building Type</label>
|
||||
<input type="string" id="building_type" name="building_type" class="form-control" placeholder="Enter building type">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="total">Total</label>
|
||||
<input type="string" id="total" name="total" class="form-control" placeholder="Enter total">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="quantity">Quantity</label>
|
||||
<input type="string" id="quantity" name="quantity" class="form-control" placeholder="Enter quantity">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="unit">Unit</label>
|
||||
<input type="number" id="unit" name="unit" class="form-control" placeholder="Enter unit">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="index_prasarana">Index Prasarana</label>
|
||||
<input type="string" id="index_prasarana" name="index_prasarana" class="form-control" placeholder="Enter indeks prasarana">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@@ -0,0 +1,80 @@
|
||||
<div class="card">
|
||||
<form id="step2Form">
|
||||
@csrf
|
||||
<div class="card-body">
|
||||
<h5 class="card-title mb-2">PBG Task Retribution</h5>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="detail_id">Detail ID</label>
|
||||
<input type="string" id="detail_id" name="detail_id" class="form-control" placeholder="Enter detail id">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="detail_created_at">Detail Created At</label>
|
||||
<input type="string" id="detail_created_at" name="detail_created_at" class="form-control" placeholder="Enter detail created at">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="detail_updated_at">Detail Updated At</label>
|
||||
<input type="string" id="detail_updated_at" name="detail_updated_at" class="form-control" placeholder="Enter detail updated at">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="detail_uid">Detail UID</label>
|
||||
<input type="string" id="detail_uid" name="detail_uid" class="form-control" placeholder="Enter detail uid">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="luas_bangunan">Luas Bangunan</label>
|
||||
<input type="string" id="luas_bangunan" name="luas_bangunan" class="form-control" placeholder="Enter luas bangunan">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="indeks_lokalitas">Indeks Lokalitas</label>
|
||||
<input type="string" id="indeks_lokalitas" name="indeks_lokalitas" class="form-control" placeholder="Enter indeks lokalitas">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="wilayah_shst">Wilayah SHST</label>
|
||||
<input type="number" id="wilayah_shst" name="wilayah_shst" class="form-control" placeholder="Enter wilayah SHST">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="kegiatan_id">Kegiatan ID</label>
|
||||
<input type="string" id="kegiatan_id" name="kegiatan_id" class="form-control" placeholder="Enter kegiatan id">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="kegiatan_name">Kegiatan Name</label>
|
||||
<input type="string" id="kegiatan_name" name="kegiatan_name" class="form-control" placeholder="Enter kegiatan name">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="nilai_shst">Nilai SHST</label>
|
||||
<input type="string" id="nilai_shst" name="nilai_shst" class="form-control" placeholder="Enter nilai shst">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="nilai_retribusi_bangunan">Indeks Retribusi Terbangun</label>
|
||||
<input type="string" id="nilai_retribusi_bangunan" name="nilai_retribusi_bangunan" class="form-control" placeholder="Enter indeks retribusi terbangun">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="nilai_prasarana">Nilai Prasarana</label>
|
||||
<input type="string" id="nilai_prasarana" name="nilai_prasarana" class="form-control" placeholder="Enter nilai_prasarana">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="created_by">Created By</label>
|
||||
<input type="string" id="created_by" name="created_by" class="form-control" placeholder="Enter created_by">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="pbg_document">PBG Document</label>
|
||||
<input type="string" id="pbg_document" name="pbg_document" class="form-control" placeholder="Enter pbg document">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="underpayment">Underpayment</label>
|
||||
<input type="string" id="underpayment" name="underpayment" class="form-control" placeholder="Enter underpayment">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="function_type">Function Type</label>
|
||||
<input type="string" id="function_type" name="function_type" class="form-control" placeholder="Enter function type">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="skrd_amount">SKRD Amount</label>
|
||||
<input type="string" id="skrd_amount" name="skrd_amount" class="form-control" placeholder="Enter skrd amount">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="pbg_task_uid">PBG Task UID</label>
|
||||
<input type="string" id="pbg_task_uid" name="pbg_task_uid" class="form-control" placeholder="Enter due date">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
44
resources/views/pbg_task/create.blade.php
Normal file
44
resources/views/pbg_task/create.blade.php
Normal file
@@ -0,0 +1,44 @@
|
||||
@extends('layouts.vertical', ['subtitle' => 'PBG'])
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('layouts.partials/page-title', ['title' => 'Create', 'subtitle' => 'PBG'])
|
||||
|
||||
<div class="row">
|
||||
<!-- Navigasi Step -->
|
||||
<div class="d-flex justify-content-between align-items-center mb-3">
|
||||
<button class="btn btn-outline-secondary" id="prevStep" disabled>
|
||||
← Back
|
||||
</button>
|
||||
<h4 id="stepTitle">Step 1</h4>
|
||||
<button class="btn btn-primary" id="nextStep">
|
||||
Next →
|
||||
</button>
|
||||
</div>
|
||||
<div class="row d-flex justify-content-center">
|
||||
<div class="col-md-8 col-lg-8 col-sm-8" id="step1">
|
||||
@include("pbg_task._form_pbg_task")
|
||||
</div>
|
||||
</div>
|
||||
<div class="row d-flex justify-content-center">
|
||||
<div id="step2" class="step-content d-none col-md-8 col-lg-8 col-sm-8">
|
||||
@include("pbg_task._form_pbg_task_retribution")
|
||||
</div>
|
||||
</div>
|
||||
<div class="row d-flex justify-content-center">
|
||||
<div id="step3" class="step-content d-none col-md-8 col-lg-8 col-sm-8">
|
||||
@include("pbg_task._form_pbg_task_index_integration")
|
||||
</div>
|
||||
</div>
|
||||
<div class="row d-flex justify-content-center">
|
||||
<div id="step4" class="step-content d-none col-md-8 col-lg-8 col-sm-8">
|
||||
@include("pbg_task._form_pbg_task_prasarana")
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('scripts')
|
||||
@vite(['resources/js/pbg-task/create.js'])
|
||||
@endsection
|
||||
3
resources/views/pbg_task/edit.blade.php
Normal file
3
resources/views/pbg_task/edit.blade.php
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<!-- Because you are alive, everything is possible. - Thich Nhat Hanh -->
|
||||
</div>
|
||||
24
resources/views/pbg_task/index.blade.php
Normal file
24
resources/views/pbg_task/index.blade.php
Normal file
@@ -0,0 +1,24 @@
|
||||
@extends('layouts.vertical', ['subtitle' => 'Data'])
|
||||
|
||||
@section('css')
|
||||
@vite(['node_modules/gridjs/dist/theme/mermaid.min.css'])
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('layouts.partials/page-title', ['title' => 'Data', 'subtitle' => 'PBG'])
|
||||
|
||||
<div class="row">
|
||||
<div class="d-flex justify-content-end pb-3">
|
||||
<a href="{{ route('pbg-task.create')}}" class="btn btn-success width-lg">Create</a>
|
||||
</div>
|
||||
<div>
|
||||
<div id="table-pbg-tasks"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('scripts')
|
||||
@vite(['resources/js/pbg-task/index.js'])
|
||||
@endsection
|
||||
@@ -9,6 +9,9 @@
|
||||
@include('layouts.partials/page-title', ['title' => 'Data', 'subtitle' => 'PBG'])
|
||||
|
||||
<div class="row">
|
||||
<div class="d-flex justify-content-end pb-3">
|
||||
<a href="{{ route('data-settings.create')}}" class="btn btn-success width-lg">Create</a>
|
||||
</div>
|
||||
<div>
|
||||
<div id="table-request-assignment"></div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user