Skip to content

Instantly share code, notes, and snippets.

@HamidOsouli-zz
Last active December 19, 2017 13:47
Show Gist options
  • Save HamidOsouli-zz/4c8ca3761726d772806139c29944d03e to your computer and use it in GitHub Desktop.
Save HamidOsouli-zz/4c8ca3761726d772806139c29944d03e to your computer and use it in GitHub Desktop.
To bind a dependency to some class in laravel
$this->app->bind(‘App\Helpers\Stripe’, function($app){
$api_key = config(‘services.stripe.api_key’);
return new \App\Helpers\Stripe($api_key);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment