Skip to content

Tags: joachimVT/Laravel-Excel

Tags

3.1.2

Toggle 3.1.2's commit message
Apply fixes from StyleCI

[ci skip] [skip ci]

3.1.1

Toggle 3.1.1's commit message
Apply fixes from StyleCI

[ci skip] [skip ci]

3.1.0

Toggle 3.1.0's commit message

Verified

This commit was signed with the committer’s verified signature.
patrickbrouwers Patrick Brouwers
Change blog link to laravel excel blog articles page

2.1.30

Toggle 2.1.30's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
7.2 not supported due to PHPExcel

2.1.29

Toggle 2.1.29's commit message
Fix: NonEnglish garbled (SpartnerNL#1774)

* Fix: NonEnglish garbled

* Update: Change filename just for Microsoft Explore

3.0.10

Toggle 3.0.10's commit message
Apply fixes from StyleCI

[ci skip] [skip ci]

3.0.9

Toggle 3.0.9's commit message

Verified

This commit was signed with the committer’s verified signature.
patrickbrouwers Patrick Brouwers
Drop tempnam in favour or generating a random string (SpartnerNL#1752)

3.0.8

Toggle 3.0.8's commit message
Apply fixes from StyleCI

[ci skip] [skip ci]

3.0.7

Toggle 3.0.7's commit message
Handle array of array returned from map function. This is usefull for… (

SpartnerNL#1711)

* Handle array of array returned from map function. This is usefull for create multiple row from single row. My use case is one booking have multiple rooms.

* Remove unnecessary space and add isset.

* Reset spaces as per library standard.

3.0.6

Toggle 3.0.6's commit message
New concern with count (SpartnerNL#1682)

* Added new concern WithCount. Allows export classes that implement the FromQuery concern, to provide their custom count implementation, instead of relying to the query's count.

* Added tests for the WithCount concern.

* Updated docs regarding the WithCount concern.

* Removed code duplication and reduced LOC.

* Fixed test on Laravel 5.5.

* Package orchestra/database is needed for Laravel 5.5 builds.

* Installing orchestra/database unconditionally.

* Renamed trait WithCount to the more expressive WithCustomQuerySize.

* Fixed some code styling issues.

* ConsoleServiceProvider is always available. No need to check for its existence.

* Renamed `count` to `querySize`.

* Added explanatory comments in the `querySize` method's docblock.