';
$penilaian .= '
Provinsi';
$penilaian .= '
'.getNilaiAll('provinsi',$row->ms_sekolah_id).'
';
@@ -124,8 +124,8 @@ class CSAPController extends Controller
$sekolah = '';
$sekolah .= @$row->sekolah->nama_sekolah.'
';
- $sekolah .= '
'.@$row->profile->tingkat->name.' ';
- $sekolah .= '
'.@$row->profile->status_sekolah.' ';
+ $sekolah .= '
'.@$row->profile->tingkat->name.' ';
+ $sekolah .= '
'.@$row->profile->status_sekolah.' ';
$_data[] = [
'no' => $key+1,
diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php
index c615ac3..bb2fda9 100644
--- a/app/Http/Controllers/ProfileController.php
+++ b/app/Http/Controllers/ProfileController.php
@@ -71,7 +71,7 @@ class ProfileController extends Controller
$kuesioner = Kuesioner::where('ms_sekolah_id',$row->MsSekolahId)->where('tahun',date('Y'))->orderBy('created_at','DESC')->first();
$log = KuesionerLog::where('kuesioner_id',@$kuesioner->KuesionerId)->orderBy('created_at','DESC')->first();
if(@$log){
- $progress = '
'.str_replace('_',' ',\Str::title($log->step)).'';
+ $progress = '
'.str_replace('_',' ',\Str::title($log->step)).'';
}else{
$progress = '';
}
@@ -99,13 +99,13 @@ class ProfileController extends Controller
}
$penilaian = '';
- $penilaian .= '
Sekolah : '.getNilaiAll('sekolah',$row->MsSekolahId).'';
+ $penilaian .= '
Sekolah : '.getNilaiAll('sekolah',$row->MsSekolahId).'';
if(($kuesioner->level+1) == 1){
- $penilaian .= '
Kota : '.getNilaiAll('kota',$row->MsSekolahId).'';
+ $penilaian .= '
Kota : '.getNilaiAll('kota',$row->MsSekolahId).'';
}
if(($kuesioner->level+1) == 2){
- $penilaian .= '
Kota : '.getNilaiAll('kota',$row->MsSekolahId).'';
- $penilaian .= '
Provinsi : '.getNilaiAll('provinsi',$row->MsSekolahId).'';
+ $penilaian .= '
Kota : '.getNilaiAll('kota',$row->MsSekolahId).'';
+ $penilaian .= '
Provinsi : '.getNilaiAll('provinsi',$row->MsSekolahId).'';
}
$_data[] = [
@@ -113,7 +113,7 @@ class ProfileController extends Controller
'id' => encode_id($row->id),
'npsn' => $row->npsn,
'nama' => $row->nama_sekolah,
- 'status_level' => '
Level '.levelAdiwiyata($row->npsn).'',
+ 'status_level' => '
Level '.levelAdiwiyata($row->npsn).'',
'wilayah' => $row->kabupaten->name,
'tanggal_level' => '-',
'penghargaan' => $penghargaan,
diff --git a/public/assets/css/custom.css b/public/assets/css/custom.css
index 0c19d86..96cdf02 100644
--- a/public/assets/css/custom.css
+++ b/public/assets/css/custom.css
@@ -1,3 +1,14 @@
+.wrap th,
+.wrap td {
+ max-width: 100%; /* Sesuaikan max-width kolom */
+}
+.wrap td span {
+ white-space: normal !important; /* Pastikan teks bisa wrap */
+ word-wrap: break-word; /* Bungkus kata yang panjang */
+}
+.nav-link{
+ border-radius: 0px!important;
+ }
.pageNumber{ list-style:none; padding:0px; margin: 0px;}
.pageNumber .page{ display: inline-block; padding: 10px;}
.pageNumber .page:hover,.resume:hover,.progress_usulan:hover{cursor: pointer!important;}
@@ -36,8 +47,19 @@
}
.subheader{margin-bottom: 20px;}
-
+.table-bordered th, .table-bordered td{border: none!important;}
+.table-bordered{border: none;}
+.table-hover tbody tr:hover{box-shadow: none;}
/* Color */
+.border-success{
+ border: 1px solid #1f6c3c!important;
+}
+.border-primary{
+ border: 1px solid #4765c0!important;
+}
+.border-secondary{
+ border: 1px solid #D0D0D0!important;
+}
.text-success{
color: #1f6c3c!important;
}
@@ -47,6 +69,9 @@
.bg-secondary{
background: #F3F4F6!important;
}
+.bg-success{
+ background: #1f6c3c!important;
+}
.bg-success-light{
background: #dcfce7;
}
@@ -65,9 +90,20 @@
.bg-warning-light{
background: #fef9c3;
}
+.bg-danger-light{
+ background: #fc6a6a;
+}
+.text-danger{
+ color: #7D0A0A!important;
+}
.btn-primary{
- background: #4796f1;
- border: 1px solid #4796f1;
+ background: #4765c0;
+/* border: 1px solid #4796f1;*/
+ border: none;
+}
+.btn-success{
+ border: none;
+ background: #1f6c3c!important;
}
/* Color */
diff --git a/resources/views/include/breadcrumbs.blade.php b/resources/views/include/breadcrumbs.blade.php
new file mode 100644
index 0000000..50bbb3f
--- /dev/null
+++ b/resources/views/include/breadcrumbs.blade.php
@@ -0,0 +1,13 @@
+@if(@$breadcrumbs)
+
+ @foreach($breadcrumbs as $dataBread)
+ -
+ @if(@$dataBread['url'])
+ {{$dataBread['name']}}
+ @else
+ {{$dataBread['name']}}
+ @endif
+
+ @endforeach
+
+@endif
\ No newline at end of file
diff --git a/resources/views/layouts/master.blade.php b/resources/views/layouts/master.blade.php
index f3d5f8e..5ad2dc4 100644
--- a/resources/views/layouts/master.blade.php
+++ b/resources/views/layouts/master.blade.php
@@ -34,14 +34,7 @@
margin: 0px;
}
- .wrap th,
- .wrap td {
- max-width: 100%; /* Sesuaikan max-width kolom */
- }
- .wrap td span {
- white-space: normal !important; /* Pastikan teks bisa wrap */
- word-wrap: break-word; /* Bungkus kata yang panjang */
- }
+
@yield('page-css')
@@ -60,7 +53,7 @@
@include('include.alert')
- @yield('breadcrumbs')
+ @include('include.breadcrumbs')
@yield('content')
diff --git a/resources/views/modules/dashboard/admin.blade.php b/resources/views/modules/dashboard/admin.blade.php
index 71fafaf..44f75f6 100644
--- a/resources/views/modules/dashboard/admin.blade.php
+++ b/resources/views/modules/dashboard/admin.blade.php
@@ -6,7 +6,7 @@
@section('content')
@@ -111,7 +111,7 @@
-
-
-
+
+
No |
NPSN |
Nama Sekolah |
diff --git a/resources/views/modules/dashboard/sekolah.blade.php b/resources/views/modules/dashboard/sekolah.blade.php
index 21e24f3..ec04236 100644
--- a/resources/views/modules/dashboard/sekolah.blade.php
+++ b/resources/views/modules/dashboard/sekolah.blade.php
@@ -11,7 +11,7 @@
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/resources/views/modules/kuesioner/form.blade.php b/resources/views/modules/kuesioner/form.blade.php
index 55e21a9..88cce5f 100644
--- a/resources/views/modules/kuesioner/form.blade.php
+++ b/resources/views/modules/kuesioner/form.blade.php
@@ -22,13 +22,13 @@
-
{{session('name')}}
-
NPSN: {{session('npsn')}}
+
{{$nama_sekolah}}
+
NPSN: {{$npsn}}
- {{session('tingkat_sekolah')}}
- {{session('status_sekolah')}}
- Level {{levelAdiwiyata(session('npsn'))}}
+ {{$tingkat}}
+ {{$status}}
+ Level {{levelAdiwiyata($npsn)}}
diff --git a/resources/views/modules/kuesioner/index.blade.php b/resources/views/modules/kuesioner/index.blade.php
index 45f0b1f..c852fa8 100644
--- a/resources/views/modules/kuesioner/index.blade.php
+++ b/resources/views/modules/kuesioner/index.blade.php
@@ -6,7 +6,7 @@
@section('content')
-
-
-
+
+
# |
No |
Status Level |
diff --git a/resources/views/modules/management/role/akses/form.blade.php b/resources/views/modules/management/role/akses/form.blade.php
index 9d3c640..9cd8744 100644
--- a/resources/views/modules/management/role/akses/form.blade.php
+++ b/resources/views/modules/management/role/akses/form.blade.php
@@ -16,8 +16,8 @@