@extends('layouts.admin') @section('content')
| 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)
@else
|
{{ $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 allNo anime available |
||||||