diff --git a/app/Exports/BranchExport.php b/app/Exports/BranchExport.php
deleted file mode 100644
index 1de8ebf..0000000
--- a/app/Exports/BranchExport.php
+++ /dev/null
@@ -1,49 +0,0 @@
-id,
- $row->code,
- $row->name,
- $row->created_at
- ];
- }
-
- public function headings()
- : array
- {
- return [
- 'ID',
- 'Code',
- 'Name',
- 'Created At'
- ];
- }
-
- public function columnFormats()
- : array
- {
- return [
- 'A' => NumberFormat::FORMAT_NUMBER,
- 'D' => NumberFormat::FORMAT_DATE_DATETIME
- ];
- }
- }
diff --git a/app/Exports/CurrencyExport.php b/app/Exports/CurrencyExport.php
deleted file mode 100644
index 27a73cb..0000000
--- a/app/Exports/CurrencyExport.php
+++ /dev/null
@@ -1,54 +0,0 @@
-id,
- $row->code,
- $row->name,
- $row->decimal_places,
- $row->updated_at,
- $row->deleted_at,
- $row->created_at
- ];
- }
-
- public function headings()
- : array
- {
- return [
- 'ID',
- 'Code',
- 'Name',
- 'Decimal Places',
- 'Created At'
- ];
- }
-
- public function columnFormats()
- : array
- {
- return [
- 'A' => NumberFormat::FORMAT_NUMBER,
- 'B' => NumberFormat::FORMAT_NUMBER,
- 'E' => NumberFormat::FORMAT_DATE_DATETIME
- ];
- }
- }
diff --git a/app/Http/Controllers/AuthorizationController.php b/app/Http/Controllers/AuthorizationController.php
deleted file mode 100644
index 5f6d270..0000000
--- a/app/Http/Controllers/AuthorizationController.php
+++ /dev/null
@@ -1,200 +0,0 @@
-get());
- return view('lpj::authorization.index');
- }
-
- public function store(BranchRequest $request)
- {
- $validate = $request->validated();
-
- if ($validate) {
- try {
- // Save to database
- Branch::create($validate);
- return redirect()
- ->route('basicdata.branch.index')
- ->with('success', 'Branch created successfully');
- } catch (Exception $e) {
- return redirect()
- ->route('basicdata.branch.create')
- ->with('error', 'Failed to create branch');
- }
- }
- }
-
- public function create()
- {
- return view('lpj::branch.create');
- }
-
- public function edit($id)
- {
- $branch = Branch::find($id);
- return view('lpj::branch.create', compact('branch'));
- }
-
- public function update(BranchRequest $request, $id)
- {
- $validate = $request->validated();
-
- if ($validate) {
- try {
- // Update in database
- $branch = Branch::find($id);
- $branch->update($validate);
- return redirect()
- ->route('basicdata.branch.index')
- ->with('success', 'Branch updated successfully');
- } catch (Exception $e) {
- return redirect()
- ->route('basicdata.branch.edit', $id)
- ->with('error', 'Failed to update branch');
- }
- }
- }
-
- public function destroy($id)
- {
- try {
- // Delete from database
- $branch = Branch::find($id);
- $branch->delete();
-
- echo json_encode(['success' => true, 'message' => 'Branch deleted successfully']);
- } catch (Exception $e) {
- echo json_encode(['success' => false, 'message' => 'Failed to delete branch']);
- }
- }
-
- public function dataForDatatables(Request $request)
- {
- // if (is_null($this->user) || !$this->user->can('branch.view')) {
- //abort(403, 'Sorry! You are not allowed to view users.');
- // }
-
- // Retrieve data from the database
- $query = Permohonan::query();
- // Get the total count of records
- $totalRecords = $query->count();
-
- // Apply pagination if provided
- if ($request->has('page') && $request->has('size')) {
- $page = $request->get('page');
- $size = $request->get('size');
- $offset = ($page - 1) * $size; // Calculate the offset
-
- $query->skip($offset)->take($size);
- }
-
- // Get the filtered count of records
- $filteredRecords = $query->count();
-
- // Get the data for the current page
- // $data = $query->get();
- $data = $query->select('permohonan.id', 'permohonan.nomor_registrasi'
- , 'branches.name AS branche_name'
- , 'debitures.name AS debiture_name'
- // , 'tujuan_penilaian.name AS debiture_name'
- , DB::raw("CONCAT(tujuan_penilaian.code,' - ', tujuan_penilaian.name) AS nama_tujuan_penilaian")
- , 'users.name AS account_officer')
- ->leftJoin('branches', 'branches.id', '=', 'permohonan.branch_id')
- ->leftJoin('debitures', 'debitures.id', '=', 'permohonan.debiture_id')
- ->leftJoin('tujuan_penilaian', 'tujuan_penilaian.id', '=', 'permohonan.tujuan_penilaian_id')
- ->leftJoin('users', 'users.id', '=', 'permohonan.user_id')
- ->get();
- // Calculate the page count
- $pageCount = ceil($totalRecords / $request->get('size'));
-
- // Calculate the current page number
- $currentPage = 0 + 1;
-
- // Return the response data as a JSON object
- return response()->json([
- 'draw' => $request->get('draw'),
- 'recordsTotal' => $totalRecords,
- 'recordsFiltered' => $filteredRecords,
- 'pageCount' => $pageCount,
- 'page' => $currentPage,
- 'totalCount' => $totalRecords,
- 'data' => $data,
- ]);
- /*
- // Apply search filter if provided
- if ($request->has('search') && !empty($request->get('search'))) {
- $search = $request->get('search');
- $query->where(function ($q) use ($search) {
- $q->where('code', 'LIKE', "%$search%");
- $q->orWhere('name', 'LIKE', "%$search%");
- });
- }
-
- // Apply sorting if provided
- if ($request->has('sortOrder') && !empty($request->get('sortOrder'))) {
- $order = $request->get('sortOrder');
- $column = $request->get('sortField');
- $query->orderBy($column, $order);
- }
-
- // Get the total count of records
- $totalRecords = $query->count();
-
- // Apply pagination if provided
- if ($request->has('page') && $request->has('size')) {
- $page = $request->get('page');
- $size = $request->get('size');
- $offset = ($page - 1) * $size; // Calculate the offset
-
- $query->skip($offset)->take($size);
- }
-
- // Get the filtered count of records
- $filteredRecords = $query->count();
-
- // Get the data for the current page
- $data = $query->get();
-
- // Calculate the page count
- $pageCount = ceil($totalRecords / $request->get('size'));
-
- // Calculate the current page number
- $currentPage = 0 + 1;
-
- // Return the response data as a JSON object
- return response()->json([
- 'draw' => $request->get('draw'),
- 'recordsTotal' => $totalRecords,
- 'recordsFiltered' => $filteredRecords,
- 'pageCount' => $pageCount,
- 'page' => $currentPage,
- 'totalCount' => $totalRecords,
- 'data' => $data,
- ]);
- */
- }
-
- public function export()
- {
- return Excel::download(new BranchExport, 'branch.xlsx');
- }
- }
diff --git a/app/Http/Controllers/BranchController.php b/app/Http/Controllers/BranchController.php
deleted file mode 100644
index a7c20ee..0000000
--- a/app/Http/Controllers/BranchController.php
+++ /dev/null
@@ -1,150 +0,0 @@
-validated();
-
- if ($validate) {
- try {
- // Save to database
- Branch::create($validate);
- return redirect()
- ->route('basicdata.branch.index')
- ->with('success', 'Branch created successfully');
- } catch (Exception $e) {
- return redirect()
- ->route('basicdata.branch.create')
- ->with('error', 'Failed to create branch');
- }
- }
- }
-
- public function create()
- {
- return view('lpj::branch.create');
- }
-
- public function edit($id)
- {
- $branch = Branch::find($id);
- return view('lpj::branch.create', compact('branch'));
- }
-
- public function update(BranchRequest $request, $id)
- {
- $validate = $request->validated();
-
- if ($validate) {
- try {
- // Update in database
- $branch = Branch::find($id);
- $branch->update($validate);
- return redirect()
- ->route('basicdata.branch.index')
- ->with('success', 'Branch updated successfully');
- } catch (Exception $e) {
- return redirect()
- ->route('basicdata.branch.edit', $id)
- ->with('error', 'Failed to update branch');
- }
- }
- }
-
- public function destroy($id)
- {
- try {
- // Delete from database
- $branch = Branch::find($id);
- $branch->delete();
-
- echo json_encode(['success' => true, 'message' => 'Branch deleted successfully']);
- } catch (Exception $e) {
- echo json_encode(['success' => false, 'message' => 'Failed to delete branch']);
- }
- }
-
- public function dataForDatatables(Request $request)
- {
- if (is_null($this->user) || !$this->user->can('branch.view')) {
- //abort(403, 'Sorry! You are not allowed to view users.');
- }
-
- // Retrieve data from the database
- $query = Branch::query();
-
- // Apply search filter if provided
- if ($request->has('search') && !empty($request->get('search'))) {
- $search = $request->get('search');
- $query->where(function ($q) use ($search) {
- $q->where('code', 'LIKE', "%$search%");
- $q->orWhere('name', 'LIKE', "%$search%");
- });
- }
-
- // Apply sorting if provided
- if ($request->has('sortOrder') && !empty($request->get('sortOrder'))) {
- $order = $request->get('sortOrder');
- $column = $request->get('sortField');
- $query->orderBy($column, $order);
- }
-
- // Get the total count of records
- $totalRecords = $query->count();
-
- // Apply pagination if provided
- if ($request->has('page') && $request->has('size')) {
- $page = $request->get('page');
- $size = $request->get('size');
- $offset = ($page - 1) * $size; // Calculate the offset
-
- $query->skip($offset)->take($size);
- }
-
- // Get the filtered count of records
- $filteredRecords = $query->count();
-
- // Get the data for the current page
- $data = $query->get();
-
- // Calculate the page count
- $pageCount = ceil($totalRecords / $request->get('size'));
-
- // Calculate the current page number
- $currentPage = 0 + 1;
-
- // Return the response data as a JSON object
- return response()->json([
- 'draw' => $request->get('draw'),
- 'recordsTotal' => $totalRecords,
- 'recordsFiltered' => $filteredRecords,
- 'pageCount' => $pageCount,
- 'page' => $currentPage,
- 'totalCount' => $totalRecords,
- 'data' => $data,
- ]);
- }
-
- public function export()
- {
- return Excel::download(new BranchExport, 'branch.xlsx');
- }
- }
diff --git a/app/Http/Controllers/CurrencyController.php b/app/Http/Controllers/CurrencyController.php
deleted file mode 100644
index 042e7af..0000000
--- a/app/Http/Controllers/CurrencyController.php
+++ /dev/null
@@ -1,150 +0,0 @@
-validated();
-
- if ($validate) {
- try {
- // Save to database
- Currency::create($validate);
- return redirect()
- ->route('basicdata.currency.index')
- ->with('success', 'Currency created successfully');
- } catch (Exception $e) {
- return redirect()
- ->route('basicdata.currency.create')
- ->with('error', 'Failed to create currency');
- }
- }
- }
-
- public function create()
- {
- return view('lpj::currency.create');
- }
-
- public function edit($id)
- {
- $currency = Currency::find($id);
- return view('lpj::currency.create', compact('currency'));
- }
-
- public function update(CurrencyRequest $request, $id)
- {
- $validate = $request->validated();
-
- if ($validate) {
- try {
- // Update in database
- $currency = Currency::find($id);
- $currency->update($validate);
- return redirect()
- ->route('basicdata.currency.index')
- ->with('success', 'Currency updated successfully');
- } catch (Exception $e) {
- return redirect()
- ->route('basicdata.currency.edit', $id)
- ->with('error', 'Failed to update currency');
- }
- }
- }
-
- public function destroy($id)
- {
- try {
- // Delete from database
- $currency = Currency::find($id);
- $currency->delete();
-
- echo json_encode(['success' => true, 'message' => 'Currency deleted successfully']);
- } catch (Exception $e) {
- echo json_encode(['success' => false, 'message' => 'Failed to delete currency']);
- }
- }
-
- public function dataForDatatables(Request $request)
- {
- if (is_null($this->user) || !$this->user->can('currency.view')) {
- //abort(403, 'Sorry! You are not allowed to view users.');
- }
-
- // Retrieve data from the database
- $query = Currency::query();
-
- // Apply search filter if provided
- if ($request->has('search') && !empty($request->get('search'))) {
- $search = $request->get('search');
- $query->where(function ($q) use ($search) {
- $q->where('code', 'LIKE', "%$search%");
- $q->orWhere('name', 'LIKE', "%$search%");
- });
- }
-
- // Apply sorting if provided
- if ($request->has('sortOrder') && !empty($request->get('sortOrder'))) {
- $order = $request->get('sortOrder');
- $column = $request->get('sortField');
- $query->orderBy($column, $order);
- }
-
- // Get the total count of records
- $totalRecords = $query->count();
-
- // Apply pagination if provided
- if ($request->has('page') && $request->has('size')) {
- $page = $request->get('page');
- $size = $request->get('size');
- $offset = ($page - 1) * $size; // Calculate the offset
-
- $query->skip($offset)->take($size);
- }
-
- // Get the filtered count of records
- $filteredRecords = $query->count();
-
- // Get the data for the current page
- $data = $query->get();
-
- // Calculate the page count
- $pageCount = ceil($totalRecords / $request->get('size'));
-
- // Calculate the current page number
- $currentPage = 0 + 1;
-
- // Return the response data as a JSON object
- return response()->json([
- 'draw' => $request->get('draw'),
- 'recordsTotal' => $totalRecords,
- 'recordsFiltered' => $filteredRecords,
- 'pageCount' => $pageCount,
- 'page' => $currentPage,
- 'totalCount' => $totalRecords,
- 'data' => $data,
- ]);
- }
-
- public function export()
- {
- return Excel::download(new CurrencyExport, 'currency.xlsx');
- }
- }
diff --git a/app/Http/Controllers/JenisFasilitasKreditController.php b/app/Http/Controllers/JenisFasilitasKreditController.php
index 8d8a886..36ba491 100644
--- a/app/Http/Controllers/JenisFasilitasKreditController.php
+++ b/app/Http/Controllers/JenisFasilitasKreditController.php
@@ -13,7 +13,6 @@
class JenisFasilitasKreditController extends Controller
{
- use LpjHelpers; // <---- Using the LpjHelpers Trait
public $user;
public function index()
@@ -28,12 +27,6 @@
if ($validate) {
try {
// Save to database
- // andy add
- $lastNumberCodeJFK = LpjHelpers::onLastCodeJFK();
-
- $validate['name'] =strtoupper($request->name);
- $validate['code'] =$lastNumberCodeJFK;
- // andy add
JenisFasilitasKredit::create($validate);
return redirect()
diff --git a/app/Http/Controllers/LaporanController.php b/app/Http/Controllers/LaporanController.php
new file mode 100644
index 0000000..ec4cf45
--- /dev/null
+++ b/app/Http/Controllers/LaporanController.php
@@ -0,0 +1,34 @@
+ 'required|string|max:255',
- 'status' => 'nullable|boolean',
- 'authorized_at' => 'nullable|datetime',
- 'authorized_status' => 'nullable|string|max:1',
- 'authorized_by' => 'nullable|exists:users,id',
- ];
-
- if ($this->method() == 'PUT') {
- $rules['code'] = 'required|string|max:3|unique:branches,code,' . $this->id;
- } else {
- $rules['code'] = 'required|string|max:3|unique:branches,code';
- }
-
- return $rules;
- }
-
- /**
- * Determine if the user is authorized to make this request.
- */
- public function authorize()
- : bool
- {
- return true;
- }
- }
diff --git a/app/Http/Requests/CurrencyRequest.php b/app/Http/Requests/CurrencyRequest.php
deleted file mode 100644
index fded635..0000000
--- a/app/Http/Requests/CurrencyRequest.php
+++ /dev/null
@@ -1,41 +0,0 @@
- 'required|string|max:255',
- 'decimal_places' => 'nullable|integer|between:0,3',
- 'status' => 'nullable|boolean',
- 'authorized_at' => 'nullable|datetime',
- 'authorized_status' => 'nullable|string|max:1',
- 'authorized_by' => 'nullable|exists:users,id',
- ];
-
- if ($this->method() == 'PUT') {
- $rules['code'] = 'required|string|max:3|unique:currencies,code,' . $this->id;
- } else {
- $rules['code'] = 'required|string|max:3|unique:currencies,code';
- }
-
- return $rules;
- }
-
- /**
- * Determine if the user is authorized to make this request.
- */
- public function authorize()
- : bool
- {
- return true;
- }
- }
diff --git a/app/Models/Branch.php b/app/Models/Branch.php
index 834b5cc..ccc208d 100644
--- a/app/Models/Branch.php
+++ b/app/Models/Branch.php
@@ -2,13 +2,10 @@
namespace Modules\Lpj\Models;
-use Modules\Lpj\Database\Factories\BranchFactory;
+use Modules\Basicdata\Models\Branch as BasicdataBranch;
-class Branch extends Base
+class Branch extends BasicdataBranch
{
- protected $table = 'branches';
- protected $fillable = ['code', 'name', 'status', 'authorized_at', 'authorized_status', 'authorized_by'];
-
public function debitures()
{
return $this->hasMany(Debiture::class, 'branch_id', 'id');
diff --git a/app/Models/Currency.php b/app/Models/Currency.php
deleted file mode 100644
index 454c834..0000000
--- a/app/Models/Currency.php
+++ /dev/null
@@ -1,20 +0,0 @@
-belongsTo(User::class);
- }
+ protected $table = 'permohonan';
+ protected $fillable = [
+ 'nomor_registrasi',
+ 'tanggal_permohonan',
+ 'user_id',
+ 'branch_id',
+ 'tujuan_penilaian_id',
+ 'debiture_id',
+ 'keterangan',
+ 'dokumen',
+ 'jenis_fasilitas_kredit_id',
+ 'nilai_plafond_id',
+ 'status',
+ 'authorized_at',
+ 'authorized_status',
+ 'authorized_by',
+ // andy add
+ 'registrasi_catatan',
+ 'registrasi_by',
+ 'registrasi_at',
+ 'jenis_penilaian_id',
+ 'region_id',
+ // andy add
+ 'status_bayar',
+ 'nilai_njop',
+ // andy add
+ 'registrasi_catatan',
+ 'registrasi_by',
+ 'registrasi_at',
+ 'jenis_penilaian_id',
+ 'region_id',
+ ];
- public function branch()
- {
- return $this->belongsTo(Branch::class);
- }
+ public function user()
+ {
+ return $this->belongsTo(User::class);
+ }
- public function tujuanPenilaian()
- {
- return $this->belongsTo(TujuanPenilaian::class);
- }
+ public function branch()
+ {
+ return $this->belongsTo(Branch::class);
+ }
- public function debiture()
- {
- return $this->belongsTo(Debiture::class);
- }
+ public function tujuanPenilaian()
+ {
+ return $this->belongsTo(TujuanPenilaian::class);
+ }
- public function documents()
- {
- return $this->hasMany(DokumenJaminan::class);
- }
+ public function debiture()
+ {
+ return $this->belongsTo(Debiture::class);
+ }
- public function nilaiPlafond()
- {
- return $this->belongsTo(NilaiPlafond::class);
- }
+ public function documents()
+ {
+ return $this->hasMany(DokumenJaminan::class);
+ }
- public function jenisFasilitasKredit()
- {
- return $this->belongsTo(JenisFasilitasKredit::class);
- }
+ public function nilaiPlafond()
+ {
+ return $this->belongsTo(NilaiPlafond::class);
+ }
- public function penilaian()
- {
- return $this->belongsTo(Penilaian::class, 'nomor_registrasi', 'nomor_registrasi');
+ public function jenisFasilitasKredit()
+ {
+ return $this->belongsTo(JenisFasilitasKredit::class);
+ }
+
+ public function penilaian()
+ {
+ return $this->belongsTo(Penilaian::class, 'nomor_registrasi', 'nomor_registrasi');
+ }
}
-}
diff --git a/resources/views/branch/create.blade.php b/resources/views/branch/create.blade.php
deleted file mode 100644
index f9cb3b7..0000000
--- a/resources/views/branch/create.blade.php
+++ /dev/null
@@ -1,58 +0,0 @@
-@extends('layouts.main')
-
-@section('breadcrumbs')
- {{ Breadcrumbs::render(request()->route()->getName()) }}
-@endsection
-
-@section('content')
-
- @if(isset($branch->id))
-
-
-@endsection
diff --git a/resources/views/branch/index.blade.php b/resources/views/branch/index.blade.php
deleted file mode 100644
index ff5a9e5..0000000
--- a/resources/views/branch/index.blade.php
+++ /dev/null
@@ -1,147 +0,0 @@
-@extends('layouts.main')
-
-@section('breadcrumbs')
- {{ Breadcrumbs::render('basicdata.branch') }}
-@endsection
-
-@section('content')
-
-@endsection
-
-@push('scripts')
-
-
-@endpush
-
diff --git a/resources/views/component/detail-jaminan.blade.php b/resources/views/component/detail-jaminan.blade.php
deleted file mode 100644
index 716ab06..0000000
--- a/resources/views/component/detail-jaminan.blade.php
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
- @foreach($permohonan->debiture->documents as $dokumen)
-
-
-
-
-
-
- Pemilik Jaminan:
-
-
- {{ $dokumen->pemilik->name?? "" }}
-
-
-
-
- Jenis Jaminan:
-
-
- {{ $dokumen->jenisJaminan->name?? "" }}
-
-
-
-
- Hubungan Pemilik Jaminan:
-
-
- {{ $dokumen->pemilik->hubungan_pemilik->name?? "" }}
-
-
-
-
- Alamat Pemilik Jaminan:
-
-
- {{ $dokumen->pemilik->address ?? ""}},
-
{{ $dokumen->pemilik->village->name ?? "" }}, {{ $dokumen->pemilik->district->name ?? "" }}, {{ $dokumen->pemilik->city->name ?? "" }}, {{ $dokumen->pemilik->province->name ?? "" }} - {{ $dokumen->pemilik->village->postal_code ?? "" }}
-
-
-
-
-
-
- @endforeach
-
-
diff --git a/resources/views/currency/create.blade.php b/resources/views/currency/create.blade.php
deleted file mode 100644
index c8b8f03..0000000
--- a/resources/views/currency/create.blade.php
+++ /dev/null
@@ -1,69 +0,0 @@
-@extends('layouts.main')
-
-@section('breadcrumbs')
- {{ Breadcrumbs::render(request()->route()->getName()) }}
-@endsection
-
-@section('content')
-
- @if(isset($currency->id))
-
-
-@endsection
diff --git a/resources/views/currency/index.blade.php b/resources/views/currency/index.blade.php
deleted file mode 100644
index b7be97f..0000000
--- a/resources/views/currency/index.blade.php
+++ /dev/null
@@ -1,154 +0,0 @@
-@extends('layouts.main')
-
-@section('breadcrumbs')
- {{ Breadcrumbs::render('basicdata.currency') }}
-@endsection
-
-@section('content')
-
-@endsection
-
-@push('scripts')
-
-
-@endpush
-
diff --git a/resources/views/laporan/sederhana_index.blade.php b/resources/views/laporan/sederhana_index.blade.php
new file mode 100644
index 0000000..48cd5be
--- /dev/null
+++ b/resources/views/laporan/sederhana_index.blade.php
@@ -0,0 +1,487 @@
+@extends('layouts.main')
+
+@section('breadcrumbs')
+ {{ Breadcrumbs::render('laporan.sederhana.index') }}
+@endsection
+
+
+@section('content')
+
+
+
+@endsection
diff --git a/resources/views/laporan/standard_index.blade.php b/resources/views/laporan/standard_index.blade.php
new file mode 100644
index 0000000..182a91c
--- /dev/null
+++ b/resources/views/laporan/standard_index.blade.php
@@ -0,0 +1,486 @@
+@extends('layouts.main')
+
+@section('breadcrumbs')
+ {{ Breadcrumbs::render('laporan.standard.index') }}
+@endsection
+
+@section('content')
+
+
+
+@endsection
diff --git a/resources/views/penilaian/form.blade.php b/resources/views/penilaian/form.blade.php
index 8d39097..07e7061 100644
--- a/resources/views/penilaian/form.blade.php
+++ b/resources/views/penilaian/form.blade.php
@@ -160,7 +160,104 @@
- @include('lpj::component.detail-jaminan')
+
+
+
+ @foreach ($permohonan->debiture->documents as $dokumen)
+
+
+
+
+
+
+ Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->name ?? '' }}
+
+
+
+
+ Jenis Jaminan:
+
+
+ {{ $dokumen->jenisJaminan->name ?? '' }}
+
+
+
+
+ Hubungan Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->hubungan_pemilik->name ?? '' }}
+
+
+
+
+ Alamat Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->address ?? '' }},
+
{{ $dokumen->pemilik->village->name ?? '' }},
+ {{ $dokumen->pemilik->district->name ?? '' }},
+ {{ $dokumen->pemilik->city->name ?? '' }},
+ {{ $dokumen->pemilik->province->name ?? '' }} -
+ {{ $dokumen->pemilik->village->postal_code ?? '' }}
+
+
+
+
+
+
+ @endforeach
+
+
- @include('lpj::component.detail-jaminan')
+
+
+
+ @foreach($permohonan->debiture->documents as $dokumen)
+
+
+
+
+
+
+ Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->name?? "" }}
+
+
+
+
+ Jenis Jaminan:
+
+
+ {{ $dokumen->jenisJaminan->name?? "" }}
+
+
+
+
+ Hubungan Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->hubungan_pemilik->name?? "" }}
+
+
+
+
+ Alamat Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->address ?? ""}},
+
{{ $dokumen->pemilik->village->name ?? "" }}, {{ $dokumen->pemilik->district->name ?? "" }}, {{ $dokumen->pemilik->city->name ?? "" }}, {{ $dokumen->pemilik->province->name ?? "" }} - {{ $dokumen->pemilik->village->postal_code ?? "" }}
+
+
+
+
+
+
+ @endforeach
+
+
- @include('lpj::component.detail-jaminan')
+
+
+
+ @foreach($permohonan->debiture->documents as $dokumen)
+
+
+
+
+
+
+ Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->name?? "" }}
+
+
+
+
+ Jenis Jaminan:
+
+
+ {{ $dokumen->jenisJaminan->name?? "" }}
+
+
+
+
+ Hubungan Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->hubungan_pemilik->name?? "" }}
+
+
+
+
+ Alamat Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->address ?? ""}},
+
{{ $dokumen->pemilik->village->name ?? "" }}, {{ $dokumen->pemilik->district->name ?? "" }}, {{ $dokumen->pemilik->city->name ?? "" }}, {{ $dokumen->pemilik->province->name ?? "" }} - {{ $dokumen->pemilik->village->postal_code ?? "" }}
+
+
+
+
+
+
+ @endforeach
+
+
diff --git a/resources/views/registrasifinal/show.blade.php b/resources/views/registrasifinal/show.blade.php
index 7592d0d..040d1e4 100644
--- a/resources/views/registrasifinal/show.blade.php
+++ b/resources/views/registrasifinal/show.blade.php
@@ -145,7 +145,98 @@
- @include('lpj::component.detail-jaminan')
+
+
+
+ @foreach($permohonan->debiture->documents as $dokumen)
+
+
+
+
+
+
+ Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->name?? "" }}
+
+
+
+
+ Jenis Jaminan:
+
+
+ {{ $dokumen->jenisJaminan->name?? "" }}
+
+
+
+
+ Hubungan Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->hubungan_pemilik->name?? "" }}
+
+
+
+
+ Alamat Pemilik Jaminan:
+
+
+ {{ $dokumen->pemilik->address ?? ""}},
+
{{ $dokumen->pemilik->village->name ?? "" }}, {{ $dokumen->pemilik->district->name ?? "" }}, {{ $dokumen->pemilik->city->name ?? "" }}, {{ $dokumen->pemilik->province->name ?? "" }} - {{ $dokumen->pemilik->village->postal_code ?? "" }}
+
+
+
+
+
+
+ @endforeach
+
+
@endsection
diff --git a/resources/views/resume/index.blade.php b/resources/views/resume/index.blade.php
new file mode 100644
index 0000000..839710b
--- /dev/null
+++ b/resources/views/resume/index.blade.php
@@ -0,0 +1,486 @@
+@extends('layouts.main')
+
+@section('breadcrumbs')
+ {{ Breadcrumbs::render('resume') }}
+@endsection
+
+@section('content')
+
+
+
+@endsection
diff --git a/resources/views/surveyor/components/denah.blade.php b/resources/views/surveyor/components/denah.blade.php
index 46f11d9..e922fa5 100644
--- a/resources/views/surveyor/components/denah.blade.php
+++ b/resources/views/surveyor/components/denah.blade.php
@@ -23,7 +23,7 @@
@foreach ($permohonan->debiture->documents as $dokumen)
-