One Hat Cyber Team
Your IP :
216.73.216.55
Server IP :
5.189.175.239
Server :
Linux panel.gemx-ai.com 5.14.0-570.19.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 4 04:00:24 EDT 2025 x86_64
Server Software :
LiteSpeed
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
farmersapp
/
hrm.farmersapp.store
/
app
/
Package
/
View File Name :
TapServiceProvider.php
<?php namespace App\Package; use Illuminate\Support\ServiceProvider; class TapServiceProvider extends ServiceProvider { /** * Bootstrap the application events. * * @return void */ public function boot() { $this->publishes([ __DIR__.'/../config/tap_payment.php' => config_path('tap_payment.php'), ], 'tap_payment-config'); } /** * Register the service provider. * * @return void */ public function register() { $packageConfigFile = __DIR__.'/../config/tap_payment.php'; $this->mergeConfigFrom( $packageConfigFile, 'tap_payment' ); //$this->registerBindings(); } /** * Registers app bindings and aliases. */ protected function registerBindings() { $this->app->singleton(Payment::class, function () { return new Payment(); }); $this->app->alias(Payment::class, 'Payment'); } }