@extends ("partials.layout")
@section ("title", "Search")
@section ("content")
Search
@if (request ()->get ("query") != null)
@forelse ($users as $user)
@empty
No users found.
@endforelse
@if (count ($hashtags) == 0)
No hashtags found.
@else
@endif
Posts
{{ $posts->withQueryString ()->links ("pagination::default") }}
@endif
@endsection