{{--
--}}
@if($search && $this->results)
@if(! count($this->results->users) && ! count($this->results->projects))
@lang('No results')
@endif @if(count($this->results->projects)) @lang('Projects')
@foreach($this->results->projects as $project)
{!! $project->client->name_and_surname !!}
{{ $project->category->name }}
@endforeach
@endif @if(count($this->results->users)) @lang('Users')
@foreach($this->results->users as $user)
{!! $user->name_and_surname !!}
{{ $user->email }}
@endforeach
@endif
@endif