Skip to content

Added money Blueprint

Choose a tag to compare

@nasrulhazim nasrulhazim released this 12 Oct 10:43
· 75 commits to master since this release

Added $table->money() Blueprint.

Usage

/**
 * This will create a column with decimal data type, precision of 8 and scale of 2 and column name money.
 **/
$table->money();

/**
 * This will create a column with decimal data type, precision of 8 and scale of 2 and column name price.
 **/
$table->money('price');

/**
 * This will create a column with decimal data type, precision of 18 and scale of 2 and column name price.
 **/
$table->money('price', 18);

/**
 * This will create a column with decimal data type, precision of 18 and scale of 4 and column name price.
 **/
$table->money('price', 18, 4);