Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

449
Vistas
laravel use with() , pluck() together

Query Output

\App\Post :

function PostMeta(){
    return $this->hasMany('App\PostMeta');
}

And my Query : ( pluck is not working) -

I need to use less database queries

$query = \App\Post
      ::with(array('PostMeta'=>function($query){
          $query->pluck('key','value');
      }));
       $query->get();

I need to get title_en , But I cant use pluck here!

New Update

solved:

function get_PostMeta(){
      // print_r($this->relations['PostMeta']);
      return $this->relations['PostMeta'];
    }


$query = \App\Post::with('PostMeta')->get();
      foreach ($query as $key => $post){
        $post->meta = $post->get_PostMeta()->pluck('value', 'key');
      }
over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

You can't do this while eager loading the data, but you can use collection method with the same name pluck() in the view when accessing the relation data:

{{ $post->postMeta->pluck('value', 'key') }}

In this case, you'll avoid N+1 problem and get data in the format you want.

Update

Since you want to prepare data for Vue, here's a small example of how you could iterate over the collection:

foreach ($posts as $post) {
    $post->meta = $post->postMeta->pluck('value', 'key');
    unset($post->postMeta);
}
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda