|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/account.appointkrypt.com/Modules/Paypal/Providers/ |
Upload File : |
<?php
namespace Modules\Paypal\Providers;
use Illuminate\Support\ServiceProvider;
class PaymentComposer extends ServiceProvider
{
/**
* Register the service provider.
*
* @return void
*/
public function boot(){
view()->composer(['plans.planpayment','plans.marketplace'], function ($view)
{
if(\Auth::check())
{
$admin_settings = getAdminAllSetting();
if(isset($admin_settings['paypal_payment_is_on']) && $admin_settings['paypal_payment_is_on'] == 'on' && !empty($admin_settings['company_paypal_client_id']) && !empty($admin_settings['company_paypal_secret_key']))
{
$view->getFactory()->startPush('company_plan_payment', view('paypal::payment.plan_payment'));
}
}
});
}
public function register()
{
//
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [];
}
}