Compare commits
14 Commits
be31bd6350
...
main_new
Author | SHA1 | Date | |
---|---|---|---|
9565bd0e4a | |||
8e359ca8d9 | |||
7e5dbcec25 | |||
9f5e8d243d | |||
49518108fc | |||
7d5cbf29f2 | |||
c703eeea8c | |||
912cfbb12a | |||
0bd8c638d5 | |||
d93dfc764f | |||
7778305e68 | |||
fb99d8a73c | |||
def29ce2e1 | |||
0f6991bd4a |
60
.env.example
60
.env.example
@ -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}"
|
@ -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",
|
||||
@ -103,10 +105,10 @@
|
||||
"name": "putrakuningan/master-module",
|
||||
"type": "vcs",
|
||||
"url": "https://git.putrakuningan.com/putrakuningan/Master"
|
||||
}, {
|
||||
},{
|
||||
"name": "katam/konfirmasibank-module",
|
||||
"type": "vcs",
|
||||
"url": "https://gitlab.iat.id/katam/konfirmasibankv2-module"
|
||||
"url": "https://git.putrakuningan.com/katam/konfirmasibank"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -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,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@ -198,4 +198,4 @@ return [
|
||||
|
||||
'same_site' => 'lax',
|
||||
|
||||
];
|
||||
];
|
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