Compare commits

...

14 Commits

Author SHA1 Message Date
9565bd0e4a update url kobank 2025-06-25 10:17:11 +07:00
8e359ca8d9 update json 2025-06-25 09:36:42 +07:00
7e5dbcec25 update modulename 2025-06-25 09:31:01 +07:00
9f5e8d243d update json path 2025-06-24 17:37:28 +07:00
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
11 changed files with 23966 additions and 68 deletions

View File

@ -1,60 +0,0 @@
APP_NAME=Clara
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost:8000
METHOD_AUTH=
IP_USER_MANAGER=
PORT_USER_MANAGER=
APP_ID=
LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=clara
DB_USERNAME=root
DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file
FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
MEMCACHED_HOST=127.0.0.1
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=smtp
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_HOST=
PUSHER_PORT=443
PUSHER_SCHEME=https
PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

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",
@ -106,7 +108,7 @@
},{ },{
"name": "katam/konfirmasibank-module", "name": "katam/konfirmasibank-module",
"type": "vcs", "type": "vcs",
"url": "https://gitlab.iat.id/katam/konfirmasibankv2-module" "url": "https://git.putrakuningan.com/katam/konfirmasibank"
} }
] ]
} }

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] }}