@extends('templates/ins/master') @section('content')

Search

{{ count($clients) + count($projects) + count($tasks) }} Results for: "{{ $q }}"

{{-- clients --}}
Clients ({{count($clients)}})
@if (count($clients) > 0) @foreach ($clients as $client) {{ $client->name }} @endforeach @else

Sorry I couldn't find nothing....

@endif
{{-- projects --}}
Projects ({{count($projects)}})
@if (count($projects) > 0) @foreach ($projects as $project) {{ $project->name }} w.{{ $project->totalWeight()}} @endforeach @else

Sorry I couldn't find nothing....

@endif
{{-- tasks --}}
Tasks ({{count($tasks)}})
@if (count($tasks) > 0) @foreach ($tasks as $task) {{ $task->name }} w.{{ $task->weight}} @endforeach @else

Sorry I couldn't find nothing....

@endif
@stop()