| @@ 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. |
|
| @@ 1642-1649 (lines=8) @@ | ||
| 1639 | * |
|
| 1640 | * @return $this |
|
| 1641 | */ |
|
| 1642 | public function column($width, \Closure $closure): self |
|
| 1643 | { |
|
| 1644 | $width = $width < 1 ? round(12 * $width) : $width; |
|
| 1645 | ||
| 1646 | $this->layout->column($width, $closure); |
|
| 1647 | ||
| 1648 | return $this; |
|
| 1649 | } |
|
| 1650 | ||
| 1651 | /** |
|
| 1652 | * Initialize filter layout. |
|