Skip to content

Releases: LasseRafn/laravel-economic

🎉 Optimized filter operators

28 Oct 10:29
Compare
Choose a tag to compare

AND / OR operators

You can now use AND / OR operators simply by doing so:

$economic->customers()->get([
    ['customerNumber', '=', 1234],
    'and',
    ['email', '!=', 'test@gmail.com'],
    'or',
    ['customerNumber', '=', 4444],
]);

NULL operators

You can check if a value is NULL by doing so:

$economic->customers()->get([
    ['customerNumber', '=', null],
]);

Which will, behind the scenes, transform your null into a $null: operator.

IN operator

The 'in' operator has not been working properly. Now it does. Use it as this:

$economic->customers()->get([
    ['customerNumber', 'in', [1,2,3,4,5]],
]);

Draft orders

14 Oct 15:00
c6696bd
Compare
Choose a tag to compare
Merge pull request #22 from kg-bot/master

REST draft orders

2.2.8: Merge pull request #20 from kg-bot/kgbot

30 Jan 15:58
9a50204
Compare
Choose a tag to compare

2.2.7: Merge pull request #19 from kg-bot/kgbot

04 Jan 18:45
5b05a9f
Compare
Choose a tag to compare

2.2.6: Merge pull request #18 from LasseRafn/analysis-8PNeY9

07 Dec 13:19
320d3dc
Compare
Choose a tag to compare

2.2.5: Merge pull request #16 from LasseRafn/analysis-87Ejn3

04 Dec 12:03
4787f18
Compare
Choose a tag to compare

2.2.4: Merge pull request #14 from LasseRafn/analysis-qJRVrQ

28 Nov 17:39
715b6fd
Compare
Choose a tag to compare

Fix $puttable for PaymentTerms

17 Aug 13:35
Compare
Choose a tag to compare
2.2.3

Changed puttable for paymentTerms to not include a lot of null values

New method added (updateRaw)

10 Aug 20:01
Compare
Choose a tag to compare
2.2.2

Added method to do a raw update call, to avoid merging data.

[BC] Fix major bug in updating entries

07 Aug 15:23
Compare
Choose a tag to compare