Skip to content

Releases: orchidsoftware/platform

1.1.5

11 Sep 22:05
Compare
Choose a tag to compare
Added events for role assignment and deletion

1.1.4

11 Sep 21:43
Compare
Choose a tag to compare
Added events for role assignment and deletion

1.1.3

06 Sep 02:48
Compare
Choose a tag to compare
Merge remote-tracking branch 'origin/master'

1.1.2

06 Sep 02:30
Compare
Choose a tag to compare
build css&js

1.1.1: Apply fixes from StyleCI (#305)

05 Sep 01:47
Compare
Choose a tag to compare

Support Laravel 5.5

31 Aug 15:53
Compare
Choose a tag to compare
1.1

update 5.5

0.0.28

14 Jul 04:18
Compare
Choose a tag to compare
Merge remote-tracking branch 'origin/master'

fix show post

14 Jul 02:49
Compare
Choose a tag to compare
0.0.27

Merge remote-tracking branch 'origin/master'

Complex fix

14 Jul 02:18
Compare
Choose a tag to compare
  • Translation
  • Pages
  • Conflict of migrations

Passing attributes as an array

09 Jul 06:24
Compare
Choose a tag to compare

I think it's worth supporting both types of entries, since the line view does not allow the declaration of lists (associative), tables or functions of closures

Current view:

/**
* @return array
*/
public function fields() : array
{
    return [
        'body'        => 'tag:wysiwyg|name:body|max:255|required|rows:10',
    ];
}

Array type:

/**
* @return array
*/
public function fields() : array
{
    return [
        'body' => [
            'tag'      => 'wysiwyg',
            'name'     => 'body',
            'max'      => 255,
            'required' => true,
            'rows'     => 10,
        ],
    ];
}