Skip to content

Releases: kg-bot/laravel-rackbeat

Customer and supplier invoices PDF

23 Mar 09:25
Compare
Choose a tag to compare
v2.5.4

Get PDF for supplier and customer invoices

Fixed Field url route key name

16 Mar 12:14
Compare
Choose a tag to compare
v2.5.3

Fixed Field URL key name

Set picked mark dynamically on order shipments

06 Mar 09:50
Compare
Choose a tag to compare
v2.5.2

Dynamically set shipment as picked, default is true

Using only urlencode()

21 Feb 10:47
Compare
Choose a tag to compare
v2.5.1

Using only urlencode() for query params

Double rawurlencode of all query filters used

21 Feb 10:34
Compare
Choose a tag to compare
v2.5.0

Better filter prepare

Account settings ready for production

19 Feb 13:26
Compare
Choose a tag to compare
v2.4.1

Correct route key name set

Account settings resource added

19 Feb 11:45
Compare
Choose a tag to compare
v2.4.0

User account settings

Enable request to be sent when converting order to invoice

18 Feb 15:03
Compare
Choose a tag to compare
v2.3.2

Send optional request when converting order to invoice

Fixed wrong rawurldecode to rawurlencode

14 Feb 10:26
Compare
Choose a tag to compare
v2.3.1

rawurlencode instead of decode (was mistake)

Always set URL friendly number when using Model primary key in URL

12 Feb 15:49
Compare
Choose a tag to compare

We used this before {$this->{$this->primaryKey}} and now we do this {$this->url_friendly_id}
Also we add url_friendly_id when we set primaryKey attribute

if ($attribute === $this->primaryKey) {

            $this->url_friendly_id = rawurldecode(rawurldecode($value));
        }