Skip to content

Instantly share code, notes, and snippets.

@zabaala
Last active February 1, 2018 14:34
Show Gist options
  • Save zabaala/dc8bc170d2e539f2bb319aba98f12080 to your computer and use it in GitHub Desktop.
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