| @@ 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. |
|
| @@ 1436-1443 (lines=8) @@ | ||
| 1433 | * |
|
| 1434 | * @return $this |
|
| 1435 | */ |
|
| 1436 | public function column($width, \Closure $closure): self |
|
| 1437 | { |
|
| 1438 | $width = $width < 1 ? round(12 * $width) : $width; |
|
| 1439 | ||
| 1440 | $this->layout->column($width, $closure); |
|
| 1441 | ||
| 1442 | return $this; |
|
| 1443 | } |
|
| 1444 | ||
| 1445 | /** |
|
| 1446 | * Initialize filter layout. |
|