Last active
February 1, 2018 14:34
-
-
Save zabaala/dc8bc170d2e539f2bb319aba98f12080 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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