php - Get Hyphenated column values in Laravel -


i'm trying hyphenated column values in laravel application. i'm not able it.

$result->reference works fine.

but when try $result->product-id returns

undefined property: stdclass::$product

when tried $result->{'product-id'}

object of class stdclass not converted string

how can value?

this should work:

$result->getattribute('product-id'); 

Comments

Popular posts from this blog

How to connect android app to App engine -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

php - display validation error message next to the textbox in codeigniter -