I want to align the value data to right in the array push table. I couldn't do it. Thank you in advance.
foreach ($reps as $rep) {
array_push($reptList,
array(
'id' => $rep->id,
'value' => 'Rs. '.number_format($rep->value, 2),
)
);
}