1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Providers;
- use Illuminate\Support\ServiceProvider;
- use Laravel\Cashier\Cashier;
- class AppServiceProvider extends ServiceProvider
- {
- /**
- * Bootstrap any application services.
- *
- * @return void
- */
- public function boot()
- {
- Cashier::useCurrency(config('cart.currency'), config('cart.currency_symbol'));
- }
- /**
- * Register any application services.
- *
- * @return void
- */
- public function register()
- {
- //
- }
- }
|