Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.*`
Expand Down Expand Up @@ -248,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')
Expand Down