Fix search. [skip-ci]

This commit is contained in:
James Cole 2016-04-04 19:49:11 +02:00
parent 0fb45974ef
commit ea378c8d82

View File

@ -106,7 +106,7 @@ class Search implements SearchInterface
$decrypted = Auth::user()->transactionjournals()->expanded()->where('transaction_journals.encrypted', 0)->where(
function (EloquentBuilder $q) use ($words) {
foreach ($words as $word) {
$q->orWhere('description', 'LIKE', '%' . e($word) . '%');
$q->orWhere('transaction_journals.description', 'LIKE', '%' . e($word) . '%');
}
}
)->get(TransactionJournal::QUERYFIELDS);