This commit is contained in:
jitendra 2019-10-22 11:03:42 +05:30
parent 2695e88630
commit 822b6014b4
3 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -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()]);
}
/**

View File

@ -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']) {