@extends('layouts.admin') @section('content')

{{ $title }}

Total: {{ $anidblist->total() }} anime
@if($animetitle) Clear @endif
@forelse($anidblist as $anime) @empty @endforelse
Cover Title Type Start Date End Date Rating Actions
@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
@endif
{{ $anime->title }}
@if(!empty($anime->description))
{{ Str::limit(strip_tags($anime->description), 100) }}
@endif
@if($anime->type) {{ $anime->type }} @else @endif {{ $anime->startdate ?? '—' }} {{ $anime->enddate ?? '—' }} @if($anime->rating)
{{ number_format($anime->rating / 100, 1) }}
@else @endif
@if($animetitle)

No anime found for "{{ $animetitle }}"

Clear search and view all
@else

No anime available

@endif
Showing {{ $anidblist->firstItem() ?? 0 }} to {{ $anidblist->lastItem() ?? 0 }} of {{ $anidblist->total() }} anime
{{ $anidblist->appends(['animetitle' => $animetitle])->links() }}
{{-- Styles moved to resources/css/csp-safe.css --}} @endsection