[WIP] Cashless

This commit is contained in:
R
2023-01-11 14:29:02 +07:00
parent 804ac883fa
commit 552a2367f5
14 changed files with 1772 additions and 1037 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class DuitkuServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
require_once app_path() . '/Services/Duitku.php';
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
//
}
}