Segregate new postcode concerns to its own js file

This commit is contained in:
afiq.hamzah
2023-03-02 18:51:27 +08:00
parent e03d9165f2
commit 7b79496ccc
3 changed files with 87 additions and 87 deletions
+13 -4
View File
@@ -76,6 +76,15 @@
flex-direction: column;
align-items: flex-start !important;
}
.select2-container .select2-selection--single {
height: 37px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding-left: 0px;
}
</style>
</head>
@@ -318,11 +327,11 @@
</nav>
@if ($auth_user['roles'] == 'ppc' || $auth_user['roles'] == 'pc')
@php
@php
$current = Carbon\Carbon::now();
$tarikhsemasa = $current->toDateString();
$cawangan = App\CawanganAR::where('kodcaw',$auth_user['cawangan'])->get()->toArray();
$getVault = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url').'/api/TunaiDiTangan/' . $auth_user['cawangan'],['tarikh' => $tarikhsemasa])->json();
@endphp
@@ -359,7 +368,7 @@
</script>
@endif
<main class="py-4">
@yield('content')
</main>