@extends('layout.default')
@section('title')
{{ __('stat.stats') }} - {{ config('other.title') }}
@endsection
@section('breadcrumbs')
{{ __('stat.stats') }}
{{ __('torrent.torrents') }}
@endsection
@section('nav-tabs')
@include('partials.statstorrentmenu')
@endsection
@section('page', 'page__stats--dead')
@section('main')
{{ __('stat.top-dead') }}
# |
{{ __('torrent.torrent') }} |
{{ __('torrent.seeders') }} |
{{ __('torrent.leechers') }} |
{{ __('torrent.completed') }} |
@foreach ($dead as $torrent)
{{ $loop->iteration }} |
{{ $torrent->name }}
|
{{ $torrent->seeders }} |
{{ $torrent->leechers }} |
{{ $torrent->times_completed }} |
@endforeach
@endsection