/** * @param $order */ public static function orderWaitingStock($order) { $message = $order->quantity . ' of ' . $order->title . ' not available right now.'; Email::send($order->clientName, $order->email, 'Waiting for stock', $message); }