$model = DB::table('arajin_models')->where('price','=',100)->get();
echo $model->title;echo $model[0]->title; $result = DB::table('arajin_models')->where('price','=',100)->get();
$model = $result[0];
echo $model->title;
# или
$model = DB::table('arajin_models')->where('price','=',100)->first();
echo $model->title;