1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Providers;
- use Illuminate\Support\ServiceProvider;
- use Laravel\Cashier\Cashier;
- class AppServiceProvider extends ServiceProvider
- {
-
- public function boot()
- {
- Cashier::useCurrency(config('cart.currency'), config('cart.currency_symbol'));
- }
-
- public function register()
- {
-
- }
- }
|