| # |
title |
description |
Image |
Action |
@forelse ($playtimes as $key => $playtime)
| {{ $key + 1 }} |
{{ $playtime->title }} |
{!! \Illuminate\Support\Str::limit(strip_tags($playtime->description), limit: 150) !!} |
@if($playtime->image)
@else
No image
@endif
|
|
@empty
|
No playtimes found.
|
@endforelse
@if(method_exists($playtimes, 'links'))
{{ $playtimes->links('pagination::bootstrap-4') }}
@endif