Compare commits

...

10 Commits

Author SHA1 Message Date
49518108fc add patpicker 2024-03-19 13:43:09 +07:00
7d5cbf29f2 fix header kobang 2024-03-19 08:58:39 +07:00
c703eeea8c add dompdf json 2024-03-04 16:04:02 +07:00
912cfbb12a update composer json 2024-03-04 15:53:57 +07:00
0bd8c638d5 update composer json 2024-03-04 15:04:16 +07:00
d93dfc764f install pluggin dompdf 2024-03-04 15:03:52 +07:00
7778305e68 update jquery browser 2024-01-22 17:42:19 +07:00
fb99d8a73c add jquery 2024-01-18 17:08:09 +07:00
def29ce2e1 update package 2023-12-15 16:42:28 +07:00
0f6991bd4a add image bag 2023-10-17 13:32:23 +07:00
10 changed files with 23965 additions and 7 deletions

View File

@ -4,6 +4,7 @@ namespace App\Providers;
use Illuminate\Database\Schema\Builder; use Illuminate\Database\Schema\Builder;
use Illuminate\Support\ServiceProvider; use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Blade;
class AppServiceProvider extends ServiceProvider class AppServiceProvider extends ServiceProvider
{ {
@ -26,5 +27,11 @@ class AppServiceProvider extends ServiceProvider
{ {
// Update defaultStringLength // Update defaultStringLength
Builder::defaultStringLength(191); Builder::defaultStringLength(191);
} Blade::directive('currrency', function($expression)
{
return "<?php echo number_format ($expression , 0,',','.') ?>";
});
}
} }

View File

@ -10,6 +10,7 @@
"require": { "require": {
"php": "^8.0.2", "php": "^8.0.2",
"anlutro/l4-settings": "^1.3", "anlutro/l4-settings": "^1.3",
"barryvdh/laravel-dompdf": "^2.0",
"dompdf/dompdf": "^2.0", "dompdf/dompdf": "^2.0",
"guzzlehttp/guzzle": "^7.2", "guzzlehttp/guzzle": "^7.2",
"haruncpi/laravel-id-generator": "^1.1", "haruncpi/laravel-id-generator": "^1.1",
@ -23,6 +24,7 @@
"laravel/tinker": "^2.7", "laravel/tinker": "^2.7",
"laravelcollective/html": "^6.4", "laravelcollective/html": "^6.4",
"nwidart/laravel-modules": "^10.0", "nwidart/laravel-modules": "^10.0",
"phpoffice/phpword": "^1.1",
"putrakuningan/logs-module": "dev-master", "putrakuningan/logs-module": "dev-master",
"putrakuningan/master-module": "dev-master", "putrakuningan/master-module": "dev-master",
"putrakuningan/usermanager-module": "dev-master", "putrakuningan/usermanager-module": "dev-master",
@ -103,7 +105,7 @@
"name": "putrakuningan/master-module", "name": "putrakuningan/master-module",
"type": "vcs", "type": "vcs",
"url": "https://git.putrakuningan.com/putrakuningan/Master" "url": "https://git.putrakuningan.com/putrakuningan/Master"
}, { },{
"name": "katam/konfirmasibank-module", "name": "katam/konfirmasibank-module",
"type": "vcs", "type": "vcs",
"url": "https://gitlab.iat.id/katam/konfirmasibankv2-module" "url": "https://gitlab.iat.id/katam/konfirmasibankv2-module"

View File

@ -181,6 +181,7 @@
Illuminate\Translation\TranslationServiceProvider::class, Illuminate\Translation\TranslationServiceProvider::class,
Illuminate\Validation\ValidationServiceProvider::class, Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class, Illuminate\View\ViewServiceProvider::class,
/* /*
* Package Service Providers... * Package Service Providers...
*/ */
@ -199,6 +200,7 @@
Jackiedo\LogReader\LogReaderServiceProvider::class, Jackiedo\LogReader\LogReaderServiceProvider::class,
Spatie\Permission\PermissionServiceProvider::class, Spatie\Permission\PermissionServiceProvider::class,
Barryvdh\DomPDF\ServiceProvider::class,
], ],
@ -216,6 +218,7 @@
'aliases' => Facade::defaultAliases()->merge([ 'aliases' => Facade::defaultAliases()->merge([
// 'ExampleClass' => App\Example\ExampleClass::class, // 'ExampleClass' => App\Example\ExampleClass::class,
'LogReader' => Jackiedo\LogReader\Facades\LogReader::class, 'LogReader' => Jackiedo\LogReader\Facades\LogReader::class,
'PDF' => Barryvdh\DomPDF\Facade::class,
])->toArray(), ])->toArray(),
]; ];

View File

@ -31,9 +31,9 @@ return [
| |
*/ */
'lifetime' => env('SESSION_LIFETIME', 120), 'lifetime' => env('SESSION_LIFETIME', 10),
'expire_on_close' => false, 'expire_on_close' => true,
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

140
public/assets/js/mammoth.browser.min.js vendored Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

View File

@ -14,6 +14,20 @@
<meta property="og:title" content=""/> <meta property="og:title" content=""/>
<link rel="canonical" href=""/> <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() !!} {!! includeFavicon() !!}
<!--begin::Fonts--> <!--begin::Fonts-->

View File

@ -6,7 +6,8 @@
<!--begin::Title--> <!--begin::Title-->
<h1 class="page-heading d-flex text-dark fw-bold fs-3 flex-column justify-content-center my-0 text-capitalize"> <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(count($route) > 1)
@if($route[1] !== 'index' && $route[1] !== 'users') @if($route[1] !== 'index' && $route[1] !== 'users')
{{ $route[1] }} {{ $route[1] }}