I wonder, when I want to delete a record with Livewire, do I still need to use a form or is it enough to just check permissions in the component like so:
public function cancelOrder(Order $order)
{
$this->authorize('cancel', Order::class);
//.... do the delete
}