| @@ 481-488 (lines=8) @@ | ||
| 478 | * |
|
| 479 | * @return $this |
|
| 480 | */ |
|
| 481 | public function column($width, \Closure $closure) |
|
| 482 | { |
|
| 483 | $width = $width < 1 ? round(12 * $width) : $width; |
|
| 484 | ||
| 485 | $this->layout->column($width, $closure); |
|
| 486 | ||
| 487 | return $this; |
|
| 488 | } |
|
| 489 | ||
| 490 | /** |
|
| 491 | * Expand filter container. |
|
| @@ 1637-1644 (lines=8) @@ | ||
| 1634 | * |
|
| 1635 | * @return $this |
|
| 1636 | */ |
|
| 1637 | public function column($width, \Closure $closure): self |
|
| 1638 | { |
|
| 1639 | $width = $width < 1 ? round(12 * $width) : $width; |
|
| 1640 | ||
| 1641 | $this->layout->column($width, $closure); |
|
| 1642 | ||
| 1643 | return $this; |
|
| 1644 | } |
|
| 1645 | ||
| 1646 | /** |
|
| 1647 | * Initialize filter layout. |
|