@php use App\Services\CommonService as Common; $companyInfo = DB::table('gnl_companies')->where([['is_delete', 0], ['is_active', 1]])->first(); $productLogo = NULL; if (isset($companyInfo->product_logo_dash) && !empty($companyInfo->product_logo_dash) && file_exists($companyInfo->product_logo_dash)) { $productLogo = $companyInfo->product_logo_dash; } $productTitle = NULL; if (isset($companyInfo->product_name_dash) && !empty($companyInfo->product_name_dash)) { $productTitle = $companyInfo->product_name_dash; } @endphp