We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43073e8 commit 51f25fcCopy full SHA for 51f25fc
src/Traits/Checkboxes.php
@@ -7,9 +7,6 @@
7
*/
8
trait Checkboxes
9
{
10
- /**
11
- * Checboxes.
12
- */
13
14
/**
15
* Whether or not checkboxes are enabled.
@@ -46,7 +43,10 @@ trait Checkboxes
46
43
47
44
public $checkboxValues = [];
48
45
49
- public function updatedCheckboxAll()
+ /**
+ * Adds all the id's to the checkbox array
+ */
+ public function updatedCheckboxAll() : void
50
51
$this->checkboxValues = [];
52
@@ -57,7 +57,10 @@ public function updatedCheckboxAll()
57
}
58
59
60
- public function updatedCheckboxValues()
61
+ * Toggles the checkbox that selects/deselects all of the checkboxes
62
63
+ public function updatedCheckboxValues() : void
64
65
$this->checkboxAll = false;
66
0 commit comments