Issue #1676 fixed
This commit is contained in:
parent
2695e88630
commit
822b6014b4
|
|
@ -73,6 +73,14 @@ return [
|
|||
|
||||
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
||||
|
||||
'stream' => [
|
||||
'ssl' => [
|
||||
'allow_self_signed' => true,
|
||||
'verify_peer' => false,
|
||||
'verify_peer_name' => false,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| SMTP Server Username
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ class CoreServiceProvider extends ServiceProvider
|
|||
|
||||
SliderProxy::observe(SliderObserver::class);
|
||||
|
||||
config(['translatable.locales' => core()->getAllLocales()->pluck('code')->toArray()]);
|
||||
// config(['translatable.locales' => core()->getAllLocales()->pluck('code')->toArray()]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -293,6 +293,8 @@ class Bundle extends AbstractType
|
|||
{
|
||||
$prices = $this->getProductPrices();
|
||||
|
||||
// dd($prices);
|
||||
|
||||
$priceHtml = '<div class="price-from">';
|
||||
|
||||
if ($prices['from']['regular_price']['price'] != $prices['from']['final_price']['price']) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue