Eloquent without laravel selectRow is not wotking

Solution:

selectRow() has not existed in the Laravel. It should be selectRaw().

Take a look on Raw Expressions in Laravel Documentation.

https://laravel.com/docs/5.8/queries#raw-expressions

DB::raw()

you can use it something like ->select(\DB::raw('column_one, column_tow'))