Feature: Creating Cart Views, rules for abandonment

This commit is contained in:
2026-08-28 00:27:46 +03:00
parent e1299fafee
commit a8ddbb8056
7 changed files with 456 additions and 1 deletions
+16
View File
@@ -16,4 +16,20 @@ return [
'auto_create_customer_for_user' => true,
/*
|--------------------------------------------------------------------------
| Cart Abandonment Threshold
|--------------------------------------------------------------------------
|
| How long a cart (that hasn't converted to a placed order) can go without
| activity before Modules\Core\Cart\Filament\Resources\CartResource treats
| it as "Abandoned" rather than "Ongoing". Anything DateInterval::createFromDateString()
| accepts works, e.g. '1 hour', '30 minutes', '2 days'.
|
*/
'cart' => [
'abandoned_after' => '1 hour',
],
];