Compare commits
10 Commits
be31bd6350
...
49518108fc
Author | SHA1 | Date | |
---|---|---|---|
49518108fc | |||
7d5cbf29f2 | |||
c703eeea8c | |||
912cfbb12a | |||
0bd8c638d5 | |||
d93dfc764f | |||
7778305e68 | |||
fb99d8a73c | |||
def29ce2e1 | |||
0f6991bd4a |
@ -4,6 +4,7 @@ namespace App\Providers;
|
||||
|
||||
use Illuminate\Database\Schema\Builder;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Illuminate\Support\Facades\Blade;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
@ -26,5 +27,11 @@ class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
// Update defaultStringLength
|
||||
Builder::defaultStringLength(191);
|
||||
Blade::directive('currrency', function($expression)
|
||||
{
|
||||
return "<?php echo number_format ($expression , 0,',','.') ?>";
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -10,6 +10,7 @@
|
||||
"require": {
|
||||
"php": "^8.0.2",
|
||||
"anlutro/l4-settings": "^1.3",
|
||||
"barryvdh/laravel-dompdf": "^2.0",
|
||||
"dompdf/dompdf": "^2.0",
|
||||
"guzzlehttp/guzzle": "^7.2",
|
||||
"haruncpi/laravel-id-generator": "^1.1",
|
||||
@ -23,6 +24,7 @@
|
||||
"laravel/tinker": "^2.7",
|
||||
"laravelcollective/html": "^6.4",
|
||||
"nwidart/laravel-modules": "^10.0",
|
||||
"phpoffice/phpword": "^1.1",
|
||||
"putrakuningan/logs-module": "dev-master",
|
||||
"putrakuningan/master-module": "dev-master",
|
||||
"putrakuningan/usermanager-module": "dev-master",
|
||||
|
@ -181,6 +181,7 @@
|
||||
Illuminate\Translation\TranslationServiceProvider::class,
|
||||
Illuminate\Validation\ValidationServiceProvider::class,
|
||||
Illuminate\View\ViewServiceProvider::class,
|
||||
|
||||
/*
|
||||
* Package Service Providers...
|
||||
*/
|
||||
@ -199,6 +200,7 @@
|
||||
Jackiedo\LogReader\LogReaderServiceProvider::class,
|
||||
|
||||
Spatie\Permission\PermissionServiceProvider::class,
|
||||
Barryvdh\DomPDF\ServiceProvider::class,
|
||||
|
||||
],
|
||||
|
||||
@ -216,6 +218,7 @@
|
||||
'aliases' => Facade::defaultAliases()->merge([
|
||||
// 'ExampleClass' => App\Example\ExampleClass::class,
|
||||
'LogReader' => Jackiedo\LogReader\Facades\LogReader::class,
|
||||
'PDF' => Barryvdh\DomPDF\Facade::class,
|
||||
])->toArray(),
|
||||
|
||||
];
|
@ -31,9 +31,9 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'lifetime' => env('SESSION_LIFETIME', 120),
|
||||
'lifetime' => env('SESSION_LIFETIME', 10),
|
||||
|
||||
'expire_on_close' => false,
|
||||
'expire_on_close' => true,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
4
public/assets/js/jquery.validate.min.js
vendored
Normal file
4
public/assets/js/jquery.validate.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
23787
public/assets/js/mammoth.browser.js
Normal file
23787
public/assets/js/mammoth.browser.js
Normal file
File diff suppressed because one or more lines are too long
140
public/assets/js/mammoth.browser.min.js
vendored
Normal file
140
public/assets/js/mammoth.browser.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
public/assets/media/logos/logo_agi.png
Normal file
BIN
public/assets/media/logos/logo_agi.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 130 KiB |
@ -14,6 +14,20 @@
|
||||
<meta property="og:title" content=""/>
|
||||
<link rel="canonical" href=""/>
|
||||
|
||||
<!-- jQuery -->
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<!-- Bootstrap JS -->
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
||||
<!-- Bootstrap Datepicker JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script>
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
||||
<!-- Bootstrap Datepicker CSS -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css">
|
||||
|
||||
|
||||
|
||||
{!! includeFavicon() !!}
|
||||
|
||||
<!--begin::Fonts-->
|
||||
|
@ -6,7 +6,8 @@
|
||||
|
||||
<!--begin::Title-->
|
||||
<h1 class="page-heading d-flex text-dark fw-bold fs-3 flex-column justify-content-center my-0 text-capitalize">
|
||||
{{ ucfirst(str_replace('-',' ',$route[0])) }}
|
||||
Konfirmasi Bank
|
||||
{{-- {{ ucfirst(str_replace('-',' ',$route[0])) }} --}}
|
||||
@if(count($route) > 1)
|
||||
@if($route[1] !== 'index' && $route[1] !== 'users')
|
||||
{{ $route[1] }}
|
||||
|
Reference in New Issue
Block a user