Ver código fonte

Update SearchController

Daniel Supernault 6 anos atrás
pai
commit
4a7a56f2cb
1 arquivos alterados com 5 adições e 2 exclusões
  1. 5 2
      app/Http/Controllers/SearchController.php

+ 5 - 2
app/Http/Controllers/SearchController.php

@@ -38,7 +38,10 @@ class SearchController extends Controller
                 });
                 $tokens->push($tags);
             }
-            $users = Profile::select('username', 'name', 'id')->where('username', 'like', '%'.$tag.'%')->limit(20)->get();
+            $users = Profile::select('username', 'name', 'id')
+                ->where('username', 'like', '%'.$tag.'%')
+                ->limit(20)
+                ->get();
 
             if($users->count() > 0) {
                 $profiles = $users->map(function ($item, $key) {
@@ -71,7 +74,7 @@ class SearchController extends Controller
                     'count'  => 0,
                     'url'    => $item->url(),
                     'type'   => 'status',
-                    'value'  => 'Posted '.$item->created_at->diffForHumans(),
+                    'value'  => "by {$item->profile->username} <span class='float-right'>{$item->created_at->diffForHumans(null, true, true)}</span>",
                     'tokens' => [$item->caption],
                     'name'   => $item->caption,
                     'thumb'  => $item->thumb(),