tambah form di surveyor

This commit is contained in:
majid
2024-10-14 14:16:52 +07:00
parent 42c7732593
commit bb7eae74f3
11 changed files with 1240 additions and 21 deletions

View File

@@ -7,6 +7,8 @@ use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Modules\Lpj\Models\Permohonan;
use Modules\Lpj\Models\Branch;
use Modules\Location\Models\Province;
class SurveyorController extends Controller
{
@@ -52,7 +54,13 @@ class SurveyorController extends Controller
'penilaian'
],
)->findOrFail($id);
return view('lpj::surveyor.detail', compact('permohonan'));
$surveyor = $id;
$branches = Branch::all();
$provinces = Province::all();
return view('lpj::surveyor.detail', compact('permohonan', 'surveyor', 'branches', 'provinces'));
}
/**
@@ -131,10 +139,106 @@ class SurveyorController extends Controller
]);
}
/**
* Remove the specified resource from storage.
* Form inspeksi.
*/
public function destroy($id)
public function formInspeksi($id)
{
//
$permohonan = Permohonan::with(
[
'user',
'debiture.province',
'debiture.city',
'debiture.district',
'debiture.village',
'branch',
'tujuanPenilaian',
'penilaian'
],
)->findOrFail($id);
$branches = Branch::all();
$provinces = Province::all();
return view('lpj::surveyor.detail', compact('permohonan', 'branches', 'provinces'));
}
/**
* Denah.
*/
public function denah($id)
{
$permohonan = Permohonan::with(
[
'user',
'debiture.province',
'debiture.city',
'debiture.district',
'debiture.village',
'branch',
'tujuanPenilaian',
'penilaian'
],
)->findOrFail($id);
$surveyor = $id;
$branches = Branch::all();
$provinces = Province::all();
return view('lpj::surveyor.detail', compact('permohonan', 'surveyor', 'branches', 'provinces'));
}
/**
* Foto.
*/
public function foto($id)
{
$permohonan = Permohonan::with(
[
'user',
'debiture.province',
'debiture.city',
'debiture.district',
'debiture.village',
'branch',
'tujuanPenilaian',
'penilaian'
],
)->findOrFail($id);
$surveyor = $id;
$branches = Branch::all();
$provinces = Province::all();
return view('lpj::surveyor.detail', compact('permohonan', 'surveyor', 'branches', 'provinces'));
}
/**
* Data pembanding.
*/
public function dataPembanding($id)
{
$permohonan = Permohonan::with(
[
'user',
'debiture.province',
'debiture.city',
'debiture.district',
'debiture.village',
'branch',
'tujuanPenilaian',
'penilaian'
],
)->findOrFail($id);
$surveyor = $id;
$branches = Branch::all();
$provinces = Province::all();
return view('lpj::surveyor.detail', compact('permohonan', 'surveyor', 'branches', 'provinces'));
}
}