Difference between Laravel Eloquent, DB Raw, Json Encode and Json Decode result set.
If you're using a DB:select raw command
$currencyRaw = DB::select( DB::raw('select * from currency));
It will give you a type array of objects in which you can display with -> command. The return set will be like this
array (
0 =>
stdClass::__set_state(array(
'pk_c_code' => 'EUR',
...