Braunson\LaravelHTML5Forms\FormBuilder::month PHP Method

month() public method

Create a form month field.
public month ( string $name, string $value = null, array $options = [] ) : string
$name string
$value string
$options array
return string
    public function month($name, $value = null, $options = array())
    {
        return $this->input('month', $name, $value, $options);
    }