|
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 App\Models\Business;
use Illuminate\Support\ServiceProvider;
class ViewComposer extends ServiceProvider
{
/**
* Register the service provider.
*
* @return void
*/
public function boot(){
view()->composer(['embeded_appointment.index'], function ($view)
{
if(\Auth::check())
{
$slug = \Request::segment(2);
$business = Business::where('slug',$slug)->first();
$admin_settings = getCompanyAllSetting($business->created_by, $business->id);
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('appointment_payment', view('paypal::payment.appointment'));
}
}
});
}
public function register()
{
//
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [];
}
}