laravel hasmany select only certain columns 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
ModelName::find($id, ['name', 'surname']);