class Column implements Buildable

Properties

protected array $width

grid system prefix width.

protected array $contents

Methods

__construct($content, int $width = 12)

Column constructor.

$this
append($content)

Append content to column.

row($content)

Add a row for column.

build()

Build column html.

startColumn()

Start column.

endColumn()

End column.

Details

at line 29
__construct($content, int $width = 12)

Column constructor.

Parameters

$content
int $width

at line 59
$this append($content)

Append content to column.

Parameters

$content

Return Value

$this

at line 73
Column row($content)

Add a row for column.

Parameters

$content

Return Value

Column

at line 98
build()

Build column html.

at line 117
protected startColumn()

Start column.

at line 130
protected endColumn()

End column.