@extends('layouts.app') @section('page-title', $entry->title . " - " . config('app.name') ) @section('content') {{ \Diglactic\Breadcrumbs\Breadcrumbs::render() }}
@if( $entry->main_image ) @else
@endif
@if( $entry->description )
{!! $entry->description_html !!}
@endif @if( $entry->hashes->isNotEmpty() )
@foreach( $entry->hashes->all() as $hash ) Filename: {{ $hash->filename }}
CRC32: {{ $hash->hash_crc32 }}
SHA-1: {{ $hash->hash_sha1 }}
Verified: {{ $hash->verified }}
@endforeach
@endif @if( $entry->parseStaffCredits() )
    @foreach( $entry->parseStaffCredits() as $item )
  • {{ $item['name'] }}: {{ $item['description'] }}
  • @endforeach
@endif @if( $entry->gallery->isNotEmpty() )
@foreach( $entry->gallery as $galleryItem )
@endforeach
@endif @if( $entry->relevant_link )
{{ $entry->relevant_link }}
@endif @if( $entry->getYoutubeVideoId() )
@endif
@include('entries.comments') @livewire('entry-files-modal') @endsection