@extends('layouts.frontend') @php $site_name = App\Models\WebSetting::where('key', 'site_name')->value('value') ?? 'XTube'; $page_title = 'Search Results' . (isset($query) && $query ? ' - ' . $query : '') . ' - ' . $site_name; @endphp @section('title', $page_title) @section('content')
Found {{ $videos->total() }} result(s) for "{{ $query }}"
@endif@if (isset($query) && $query) We couldn't find any videos matching "{{ $query }}" @else Please enter a search query @endif