"; const companyPhone = ""; const companyVat = ""; const companyLogo = ""; container.innerHTML = `
${companyLogo ? `Logo` : ''}
${companyName}
${companyPhone ? `
هاتف / Tel: ${companyPhone}
` : ''} ${companyVat ? `
الرقم الضريبي / VAT No: ${companyVat}
` : ''} JS; $replace = <<<'JS' const companyName = outletName || ""; const companyPhone = outletPhone || ""; const companyAddress = outletAddress ? outletAddress.replace(/\n/g, '
') : ""; const companyVat = ""; const companyLogo = ""; container.innerHTML = `
${companyLogo ? `Logo` : ''}
${companyName}
${companyAddress ? `
${companyAddress}
` : ''} ${companyPhone ? `
هاتف / Tel: ${companyPhone}
` : ''} ${companyVat ? `
الرقم الضريبي / VAT No: ${companyVat}
` : ''} JS; $content = str_replace($search, $replace, $content); file_put_contents('index.php', $content);