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

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -