From 52262ec0f3f6f925a09034b865d1ff6a374e9aae Mon Sep 17 00:00:00 2001 From: Sebastian Fix Date: Wed, 11 Jan 2023 20:59:05 +0100 Subject: [PATCH 1/2] Updated readme.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2bfb1050..adfd7c02 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,19 @@ then optimize the processes that power the core of your business. ## 🛠 Requirements -### > = v.1.2 +### > = v2.0 + +- PHP: `^8.2` +- Laravel: `^9.*` || Laravel: `^10.*` +- DocuWare Cloud Access +- +### > = v1.2 - PHP: `^8.1` - Laravel: `^9.*` - DocuWare Cloud Access -### < v.1.2 +### < v1.2 - PHP: `^8.0` - Laravel: `^8.*` From e9bb17e7ac9d83455bdf23e1d2e93640890cf070 Mon Sep 17 00:00:00 2001 From: Sebastian Fix Date: Wed, 11 Jan 2023 21:06:05 +0100 Subject: [PATCH 2/2] Update filterDate Methods --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index adfd7c02..a78a21b5 100644 --- a/README.md +++ b/README.md @@ -254,8 +254,8 @@ $paginator = DocuWare::search() ->page(2) ->perPage(30) ->fulltext('My secret document') - ->dateFrom(Carbon::create(2021, 3, 1)) - ->dateUntil(Carbon::create(2021, 4, 1)) + ->filterDate('DWSTOREDATETIME','>=',Carbon::create(2021, 3, 1)) + ->filterDate('DWSTOREDATETIME','<',Carbon::create(2021, 4, 1)) ->filter('TYPE', 'Order') ->filter('OTHER_FIELD', 'other') ->orderBy('DWSTOREDATETIME', 'desc')