Releases: orchidsoftware/platform
Releases · orchidsoftware/platform
1.1.1: Apply fixes from StyleCI (#305)
[ci skip] [skip ci]
Support Laravel 5.5
1.1 update 5.5
0.0.28
fix show post
0.0.27 Merge remote-tracking branch 'origin/master'
Complex fix
- Translation
- Pages
- Conflict of migrations
Passing attributes as an array
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,
],
];
}
0.0.24
Check DB connection
0.0.23 Merge remote-tracking branch 'origin/master'
Statics Pages
fix
Statics Pages
correct