I am working with Breeze Template in Laravel. Here I altered HTML code
<input type="email" name="email" class="form-control" id="exampleInputEmail1">
to Breeze Code
`<x-input type="email" name="email" class="form-control" id="exampleInputEmail1" />`.
But now how can I alter this HTML code
<select class="form-control" id="exampleFormControlSelect1"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select>
to Breeze Code ?
Probably this is what your looking for I guess !!
<x-dropdown class="form-control" id="exampleFormControlSelect1"> <xd-item>1</xd-item> <xd-item>2</xd-item> </x-dropdown>
1.4m articles
1.4m replys
5 comments
57.0k users