commit
b27c8609cf
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{!! view_render_event('bagisto.admin.catalog.product.edit_form_accordian.categories.before', ['product' => $product]) !!}
|
||||
|
||||
<accordian title="'{{ __('admin::app.catalog.products.categories') }}" :active="false">
|
||||
<accordian title="{{ __('admin::app.catalog.products.categories') }}" :active="false">
|
||||
<div slot="body">
|
||||
|
||||
{!! view_render_event('bagisto.admin.catalog.product.edit_form_accordian.categories.controls.before', ['product' => $product]) !!}
|
||||
|
|
|
|||
|
|
@ -57,7 +57,11 @@ trait CartTools
|
|||
}
|
||||
|
||||
foreach ($guestCart->items as $guestCartItem) {
|
||||
$this->addProduct($guestCartItem->product_id, $guestCartItem->additional);
|
||||
try {
|
||||
$this->addProduct($guestCartItem->product_id, $guestCartItem->additional);
|
||||
} catch (\Exception $e) {
|
||||
//Ignore exception
|
||||
}
|
||||
}
|
||||
|
||||
$this->collectTotals();
|
||||
|
|
|
|||
Loading…
Reference in New Issue