eloquent select specific 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

$result = DB::Table('table_name')->select('column1','column2')->where('id',1)->get();

Example 3: eloquest how to select one specific column in database

ModelName::find($id, ['name', 'surname']);

Example 4: get specific columns using with() function in laravel eloquent

Post::with('user:id,username')->get();

Tags:

Php Example