I want to change my array to number.
This is what I get
"total_amount" => "817450.00"
but I only want the 817450.00
How to change to number but not array.
$total_sale = CtAgent::where('agent_id', $agent_id)
->select('total_amount')
->orderByDesc('ct_id')
->limit('1')
->first();
dd($total_sale);
show number