@section('site_title', formatTitle([__('Website status checker'), __('Tool'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['url' => route('tools'), 'title' => __('Tools')], ['title' => __('Tool')], ]])

{{ __('Website status checker') }}

{{ __('Website status checker') }}
@include('shared.message')
@csrf
@if ($errors->has('domain')) {{ $errors->first('domain') }} @endif
@if(isset($result))
{{ __('Result') }}
{{ __('URL') }}
{{ $domain }}
{{ __('Status') }}
@if($result)
{{ __('Online') }}
@else
{{ __('Offline') }}
@endif
{{ __('Code') }}
{{ $result->getStatusCode() }}
{{ __('Load time') }}
{{ __(':value seconds', ['value' => number_format($stats['total_time'] ?? 0, 2, __('.'), __(','))]) }}
@endif