Laravel 9 – ErrorException: Undefined variable $order_id while sending mail
Hello in my laravel application i have a moment when the user is notified on mail when tha order is complete. ` In my controller i have: Mail::to('test@mail')->send(new OrderSuccess($id)); // $id is a string in mail.php <?php namespace AppMail; use…