laravel where and where only get code example
Example 1: eloquent get only some columns
Table::select('name','surname')->where('id', 1)->get();
Example 2: eloquest how to select one specific column in database
$result = DB::Table('table_name')->select('column1','column2')->where('id',1)->get();