Skip to content

Instantly share code, notes, and snippets.

@podlom
Created November 5, 2025 09:44
Show Gist options
  • Select an option

  • Save podlom/14c42493c40b5b560a991cf8a8b2d729 to your computer and use it in GitHub Desktop.

Select an option

Save podlom/14c42493c40b5b560a991cf8a8b2d729 to your computer and use it in GitHub Desktop.
Laravel Service Provider a Code Example
<?php
// app/Providers/AppServiceProvider.php
public function register() {
$this->app->bind(PaymentGateway::class, StripePaymentGateway::class);
}
public function boot() {
View::share('appName', config('app.name'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment