-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #354 from OpenSID/rilis-2406.0.0
Rilis 2406.0.0
- Loading branch information
Showing
1,773 changed files
with
243,059 additions
and
1,083 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers\Web; | ||
|
||
use App\Http\Controllers\Controller; | ||
use App\Models\Penduduk; | ||
|
||
class PresisiController extends Controller | ||
{ | ||
/** | ||
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View | ||
*/ | ||
public function index() | ||
{ | ||
$totalDesa = 0; | ||
$pendudukSummary = 0; | ||
$configSummary = 0; | ||
$keluargaSummary = 0; | ||
$categoriesItems = [ | ||
['key' => 'kecamatan', 'text' => 'kecamatan', 'value' => $configSummary, 'icon' => 'web/img/kecamatan.jpg'], | ||
['key' => 'desa', 'text' => 'desa/kelurahan', 'value' => $totalDesa, 'icon' => 'web/img/kelurahan.jpg'], | ||
['key' => 'penduduk', 'text' => 'jumlah penduduk', 'value' => $pendudukSummary, 'icon' => 'web/img/penduduk.jpg'], | ||
['key' => 'keluarga', 'text' => 'jumlah keluarga', 'value' => $keluargaSummary, 'icon' => 'web/img/bantuan.jpg'], | ||
]; | ||
$listKecamatan = ['' => 'Pilih Kecamatan']; | ||
$listDesa = ['' => 'Pilih Desa']; | ||
|
||
return view('presisi.index', compact('categoriesItems', 'listKecamatan', 'listDesa')); | ||
} | ||
|
||
public function kependudukan() | ||
{ | ||
$statistik = Penduduk::KATEGORI_STATISTIK; | ||
|
||
return view('presisi.kependudukan.index', compact('statistik')); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
Di rilis v2401.0.0 berisi penambahan fitur dan perbaikan lain sesuai dengan pelayanan ke pelanggan. | ||
Di rilis v2406.0.0 berisi penambahan fitur dan perbaikan lain sesuai dengan pelayanan ke pelanggan. | ||
|
||
#### Penambahan Fitur | ||
|
||
1. [#344](https://github.com/OpenSID/OpenKab/issues/344) Penambahan opsi dasbor pada pengaturan OpenKab. | ||
2. [#345](https://github.com/OpenSID/OpenKab/issues/345) Penambahan template dasbor baru pada OpenKab. | ||
3. [#348](https://github.com/OpenSID/OpenKab/issues/348) Penambahan data statistik penduduk. | ||
|
||
#### Perbaikan BUG | ||
|
||
1. [#336](https://github.com/OpenSID/OpenKab/issues/336) Perbaikan halaman depan yang tidak tampil datanya secara dinamis. | ||
1. [#342](https://github.com/OpenSID/OpenKab/issues/342) Perbaikan perbaiki duplikat pilih Kecamatan. | ||
|
||
#### Perubahan Teknis | ||
#### Perubahan Teknis |
Oops, something went wrong.