Skip to content

Instantly share code, notes, and snippets.

@zabaala
Last active June 26, 2025 12:30
Show Gist options
  • Select an option

  • Save zabaala/dc8bc170d2e539f2bb319aba98f12080 to your computer and use it in GitHub Desktop.

Select an option

Save zabaala/dc8bc170d2e539f2bb319aba98f12080 to your computer and use it in GitHub Desktop.
<?php
$anuncios = Anuncio::select([
'anuncios.id',
'anuncios.titulo',
'anuncios.descricao',
DB::raw('(select if(count(anuncios_favoritados.id) > 0, 'favorito', 'nao_favorito') from anuncios_favoritados where user_id = "' . Auth::user()->id . '") as favoritado ')
])->get()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment