@extends('admin.layout.app') @section('content')

Playtime

@if ($playtimes->isEmpty()) {{ $playtimes->isEmpty() ? 'Add New' : 'Add Another' }} @endif
@forelse ($playtimes as $key => $playtime) @empty @endforelse
# title description Image Action
{{ $key + 1 }} {{ $playtime->title }} {!! \Illuminate\Support\Str::limit(strip_tags($playtime->description), limit: 150) !!} @if($playtime->image) {{ $playtime->imagealt ?? 'Playtime Image' }} @else No image @endif
@csrf @method('DELETE')
No playtimes found.
@if(method_exists($playtimes, 'links'))
{{ $playtimes->links('pagination::bootstrap-4') }}
@endif
@endsection