@extends('layouts.admin') @section('content')
Back to List
@csrf
@if(!empty($anime->rating))

Display: {{ number_format($anime->rating / 100, 1) }} / 10

@endif
@php $hasCover = $anime->anidbid > 0 && (file_exists(storage_path('covers/anime/' . $anime->anidbid . '-cover.webp')) || file_exists(storage_path('covers/anime/' . $anime->anidbid . '-cover.jpg'))); @endphp @if($hasCover) {{ $anime->title }} @else

No cover image available

Cover will be downloaded from AniList when data is populated

@endif
@php $anilistId = $anime->anilist_id ?? null; $malId = $anime->mal_id ?? null; @endphp @if(!empty($anilistId) || !empty($malId))
@if(!empty($anilistId)) AniList @endif @if(!empty($malId)) MyAnimeList @endif
@endif
Cancel
@endsection