$order = ShopOrder::create([
'billing_first_name' => $data['firstName'],
'billing_last_name' => $data['lastName'],
'billing_company' => $data['company'],
'billing_address' => trim($data['address']),
'billing_address_house_number' => trim($data['addressNo']),
'billing_city' => trim($data['city']),
'billing_country' => $data['country'],
'billing_zip' => trim($data['zip']),
'billing_phone' => $data['phone'] ?? null,
'email' => $data['email'],
'shipment_type' => 'send',
'shipping_costs' => $this->shippingCosts ?? 0,
'ip' => request()->ip(),
'comment' => $data['comment'] ?? null,
'discount' => session('discount'),
]);