Enth\u00e4lt gemischt: Laravel-10-Upgrade + Phase 1 (Contacts-Modul, Duplicats-Commands, Soft-Delete+Merge-Fields) + Phase 2 Code-Umstellungen (inquiry_id, $table='contacts'/'inquiries') + Offers-Modul (Migrationen, Models, offer_id in Booking, offer-Disk in filesystems.php). Phase 2 + Offers werden im folgenden Commit nach dev/backups/phase2-offers-2026-04-17/ verschoben, damit der Workspace auf Phase-1-only (= Test-System-Stand) reduziert ist und direkt auf Live deploybar wird. Tarball-Backup zus\u00e4tzlich unter: ../backups-safety/workspace-pre-phase1-rollback-2026-04-17.tar.gz Made-with: Cursor
75 lines
1.9 KiB
PHP
75 lines
1.9 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default tax rate
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This default tax rate will be used when you make a class implement the
|
|
| Taxable interface and use the HasTax trait.
|
|
|
|
|
*/
|
|
|
|
'tax' => 10,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Shoppingcart database settings
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can set the connection that the shoppingcart should use when
|
|
| storing and restoring a cart.
|
|
|
|
|
*/
|
|
|
|
'database' => [
|
|
|
|
'connection' => null,
|
|
|
|
'table' => 'shoppingcart',
|
|
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Destroy the cart on user logout
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| When this option is set to 'true' the cart will automatically
|
|
| destroy all cart instances when the user logs out.
|
|
|
|
|
*/
|
|
|
|
'destroy_on_logout' => false,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default number format
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This defaults will be used for the formated numbers if you don't
|
|
| set them in the method call.
|
|
|
|
|
*/
|
|
|
|
'format' => [
|
|
|
|
'decimals' => 2,
|
|
|
|
'decimal_point' => '.',
|
|
|
|
'thousand_seperator' => ''
|
|
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Allows you to choose if the discounts applied to fees
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
'discountOnFees' => false,
|
|
|
|
];
|