<th align'"center"> not working on a bootstrap table. What might be the reason?
If you're using bootstrap, use its CSS rules.
<th class="text-center">Product</th>
Use this
<th class="text-center">Product</th>
attribute align not work because on bootstrap stylesheet find this:
th {
text-align:left
}