model find by certain column laravel

Solutions on MaxInterview for model find by certain column laravel by the best coders in the world

showing results for - "model find by certain column laravel"
Pedro
06 Jan 2018
1Table::select('name','surname')->where('id', 1)->get();
2