@extends('layouts.app') @section('title', isset($query) ? 'Search: ' . $query . ' | ' . config('app.name') : 'Video Gallery | ' . config('app.name')) @section('extra_styles') @endsection @section('content') @isset($query)

Search results for "{{ $query }}"

{{ $videos->total() }} videos found

@endif @if($videos->isEmpty())
@isset($query)

No results found

Try different keywords or browse all videos.

@else

No videos yet

Be the first to upload a video!

@endisset @auth Upload Video @else Login to Upload @endauth
@else
@foreach($videos as $video) @endforeach
{{ $videos->links() }}
@endif @include('layouts.partials.share-modal') @endsection @section('scripts') @endsection