0
My problem is this: I am wearing bootstrap4 and would like to put the three buttons on the same line. how I proceed?
<td class="col-4">
<a href="/FAQCategory/{{ $FAQCategory->id }}" class="btn btn-success btn-sm">Detalhar</a>
<a href="/FAQCategory/{{ $FAQCategory->id }}/edit" class="btn btn-primary btn-sm">Editar</a>
<form action="FAQCategory/{{ $FAQCategory->id }}" method="post">
@csrf
@method('delete')
<a class="btn btn-danger btn-sm">Apagar</a>
</form>
</td>
the other 2 buttons are only used as links, because it does not put the
<form>
involving the 3 buttons? and the button "Delete" should set the type<button type="submit"...>
to execute theaction
of<form>
– balexandre
Thanks @balexandre. I ended up using d-inline-block in the form class.
– Diogo Felipe Ladorucki