class OrderSheet (View source)

Main entry point for creating new order sheets

Methods

count(int $count)

Setter for $count

state(array $state)

Setter for $state

path(string $path)

Setter for $path

header(bool $header = true)

Setter for $header

array
toArray()

Export the order sheet data to array or CSV

string
csv()

Export the order sheet data to CSV

void
xlsx(string $filename = 'order_sheet.xlsx')

Export the order sheet data to XLSX

string
__toString()

Magic method to convert the order sheet type to string

static OrderSheet
of(OrderSheetType $orderSheetType)

Factory method to create an instance of OrderSheet

Details

OrderSheet count(int $count)

Setter for $count

Parameters

int $count

The number of rows in the order sheet

Return Value

OrderSheet

The method returns self instance

OrderSheet state(array $state)

Setter for $state

Parameters

array $state

The state of the order sheet

Return Value

OrderSheet

The method returns self instance

OrderSheet path(string $path)

Setter for $path

Parameters

string $path

The path to save the order sheet

Return Value

OrderSheet

The method returns self instance

OrderSheet header(bool $header = true)

Setter for $header

Parameters

bool $header

Whether to include the header in the order sheet

Return Value

OrderSheet

The method returns self instance

array toArray()

Export the order sheet data to array or CSV

Return Value

array

The method returns the order sheet data as array or CSV string

string csv()

Export the order sheet data to CSV

Return Value

string

The method returns the order sheet data as CSV string

void xlsx(string $filename = 'order_sheet.xlsx')

Export the order sheet data to XLSX

Parameters

string $filename

A filename to create

Return Value

void

string __toString()

Magic method to convert the order sheet type to string

Return Value

string

The method returns the order sheet type as string

static OrderSheet of(OrderSheetType $orderSheetType)

Factory method to create an instance of OrderSheet

Parameters

OrderSheetType $orderSheetType

The order sheet type

Return Value

OrderSheet

The method returns the OrderSheet instance