Shipping Status in backend list Order statuses instead

Laraship QuestionsCategory: TechnicalShipping Status in backend list Order statuses instead
Roberto Fernandez asked 2 years ago
There's an error in the file OrdersController in both, ECommerce and Marketplace:

Line 67-73: $shippment_statuses = trans(config('marketplace.models.order.shippment_statuses')); $payment_statuses = trans(config('marketplace.models.order.payment_statuses'));
$this->setViewSharedData(['title_singular' => trans('Marketplace::module.order.update')]);
return view('Marketplace::orders.edit')->with(compact('order', 'order_statuses', 'shippment_statuses', 'payment_statuses'));
They should be:

$shipping_statuses = trans(config('marketplace.models.order.shipping_statuses')); $payment_statuses = trans(config('marketplace.models.order.payment_statuses'));
$this->setViewSharedData(['title_singular' => trans('Marketplace::module.order.update')]);
return view('Marketplace::orders.edit')->with(compact('order', 'order_statuses', 'shipping_statuses', 'payment_statuses'));
Best regards
Question Tags:
1 Answers
laraship Staff answered 2 years ago
Hello, Thanks for putting this out, we have alerted the dev team to look atÂ