My Eloquent query is:
$postcode = address::where('client_id', $bill->client_id)->where('label', $bill->location)->select('postcode')->get();
echo $postcode returns[{"postcode":"LS18 2DY"}]
How to I return just the postcode string?
$postcode->postcode or $postcode['postcode'] fail