@extends('layouts.app') @section('title', 'Schedule Log') @push('scripts') @endpush @section('content')
Schedule Log
@if($filename)
Download
@endif
{{-- Error --}} @if($error)
{{ $error }}
@endif {{-- File picker --}}
{{-- Stats strip --}} @if($stats)
Total Sends
{{ $stats['total'] }}
Successful
{{ $stats['ok'] }}
Failed
{{ $stats['fail'] }}
Success Rate
{{ $stats['rate'] !== null ? $stats['rate'].'%' : '—' }}
{{ $stats['screen'] }} {{ $stats['device'] }} {{ $stats['highway'] }} {{ $stats['period'] }}
@endif {{-- Log viewer --}} @if($content !== null)
{{ $filename }}
{{ $content }}
@elseif(!$error)
No log files found in storage/logs/.
@endif @endsection