Removed php typo / fixed search and mail.

This commit is contained in:
2021-02-25 13:24:17 +01:00
parent 1e27c950c5
commit a8de58d5b4
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -38,6 +38,7 @@ class PostController extends Controller
->orWhere("posts.text", "LIKE", "%{$search}%")
->orWhere("statuses.name", "LIKE", "%{$search}%")
->orWhere("occupations.name", "LIKE", "%{$search}%")
->andWhere("statuses.name", "NOT", "Pending")
->get();
return view("index", [ "posts" => $posts]);