generated from boboko/starter
Initial commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
use Lunar\Pricing\DefaultPriceFormatter;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pricing Stored Inclusive of Tax
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Specify whether the prices entered into the system include tax or not.
|
||||
|
|
||||
*/
|
||||
'stored_inclusive_of_tax' => env('LUNAR_STORE_INCLUSIVE_OF_TAX', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Price formatter
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Specify which class to use when formatting price data types
|
||||
|
|
||||
*/
|
||||
'formatter' => DefaultPriceFormatter::class,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pricing Pipelines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Define which pipelines should be run when retrieving purchasable price.
|
||||
|
|
||||
| Each pipeline class will be run from top to bottom.
|
||||
|
|
||||
*/
|
||||
'pipelines' => [
|
||||
// App\Pipelines\Pricing\Example::class,
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user