Skip to content

Releases: cloudcake/laravel-properties

v2.0.1

10 Apr 23:08
580d8a7
Compare
Choose a tag to compare
  • Added unit tests
  • Added fallback method for associating property via name: Model::attachProperty('name', 'value');
  • Added detachProperty method

v2.0.0

10 Apr 22:36
Compare
Choose a tag to compare
Update docs

v1.0.5

05 Apr 22:48
6db1696
Compare
Choose a tag to compare

Add fallback value for unset type attribute.

v1.0.4

05 Apr 20:46
b8336c0
Compare
Choose a tag to compare

Allow conditional attachments:

$model->attachProperty('key', ['param' => 'value'], function($property) {
       $property->where('something', 'something');
});

v1.0.3

21 Mar 14:24
e8ec57d
Compare
Choose a tag to compare
Fix config path

v1.0.2

30 Jan 15:49
7eb7434
Compare
Choose a tag to compare
  • Added ability to publish migrations instead of loading (Useful if your project uses UUID's)
  • Fixed corner case where schema property would receive an object of values instead of array

v1.0.1

25 Jan 00:12
Compare
Choose a tag to compare
Merge branch 'master' of github.com:stephenlake/laravel-properties

v1.0.0

21 Jan 11:31
Compare
Choose a tag to compare
Add whitespace

v0.0.2

19 Jan 19:47
Compare
Choose a tag to compare
Add JSON mutator

v0.0.1

14 Jan 13:23
Compare
Choose a tag to compare
Fix use of pivot model extending pivot instead of morphPivot