@extends('layouts.app') @section('title', $query ? 'Search results for "' . $query . '"' : 'Search') @section('meta_description', 'Search AIT Broadcasting Network for news, articles and videos') @section('content')
{{-- MAIN COLUMN --}}
{{-- SEARCH BOX --}}

Search AIT Broadcasting Network

{{-- SEARCH RESULTS --}} @if($query)
@if($articles->total() > 0) Found {{ $articles->total() }} results for "{{ $query }}" @else No results found for "{{ $query }}" @endif
@if($articles->count() > 0) {{-- PAGINATION --}}
{{ $articles->links() }}
@else
No articles found for "{{ $query }}".
Try different keywords or browse by category using the navigation above.
@endif @endif
{{-- SIDEBAR --}} @include('partials.sidebar')
@endsection