@auth
1080p
@php
$dlList = App\Models\Episode::where('hentai_id', $episode->hentai_id)
->orderBy('episode', 'asc')
->get();
$fillNumbers = $dlList->count() >= 10;
@endphp
@foreach ($dlList as $hdl)
@include('modals.partials.download-button')
@endforeach
@include('modals.partials.download-backup')
@if ($episode->interpolated)
1080p 48fps
@foreach ($dlList as $hdl)
@include('modals.partials.download-button-interpolated')
@endforeach
@endif
@if (!Auth::user()->is_patreon)
@if (config('hstream.free_downloads'))
4k
@livewire('downloads-free', ['episode' => $episode])
@else
4k
4k Downloads are restricted to patreon subscribers. If you are subscribed to patreon and you have a patreon role
on our Discord server, you have to logout and login again.
@endif
@else
4k
@php $dlpdomains = config('hstream.download_domain_4k'); @endphp
@foreach ($dlList as $hdl)
@include('modals.partials.download-button-patreon')
@endforeach
@endif
@if ($episode->interpolated_uhd)
@if (!Auth::user()->is_patreon)
@if (config('hstream.free_downloads'))
4k 48fps
@livewire('downloads-free', ['episode' => $episode, 'interpolated' => true])
@else
4k 48fps
4k 48fps Downloads are restricted to patreon subscribers. If you are subscribed to patreon and you have a patreon role
on our Discord server, you have to logout and login again.
@endif
@else
4k 48fps
@php $dlpdomains = config('hstream.download_domain_4k'); @endphp
@foreach ($dlList as $hdl)
@include('modals.partials.download-button-patreon-interpolated')
@endforeach
@endif
@endif
@include('modals.partials.download-subtitles')
@endauth