Initial commit

This commit is contained in:
boboko
2026-07-03 13:46:54 +00:00
commit cbad03bf8f
125 changed files with 20420 additions and 0 deletions
+41
View File
@@ -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,
],
];