select certain columns from eloquent code example
Example 1: eloquent get only some columns
Table::select('name','surname')->where('id', 1)->get();
Example 2: get specific columns using with() function in laravel eloquent
Post::with('user:id,username')->get();