vendredi 26 mai 2017

How do I parse this json data in view blade? Output [{"...":...}]

I am trying to display the maximum value of an attribute in a table

my controller

$member = DB::table('member')
->select(DB::raw('MAX(code) as code'))  
->where('status', '=', "No")->get();
return view('member.index', compact('member')); 

Currently this is my view



And this is the output

[{"code":14101234}]

I wanted to display something like this

14101234

I've tried using json_decode but the result remains.



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2qrcWQL
via IFTTT

Aucun commentaire:

Enregistrer un commentaire