js ile yapılabilir,
eklediğiniz butona bu kodları girip dener misiniz:
<script> document.getElementById('whatsappButton').addEventListener('click', function () { const phone = "{{$order->phone}}"; const message = encodeURIComponent("{{$item->get('sms-icerigi')}}"); const whatsappUrl = `https://api.whatsapp.com/send/?phone=${phone}&text=${message}`; window.open(whatsappUrl, '_blank'); }); </script>