@extends('layouts.modcp')
@section('page-title', $pageTitle . ' - ' . config('app.name') )
@section('modcp-content')
{{ $pageTitle }}
{{ $entries->count() }}
@if($entries->isEmpty())
@else
@foreach($entries as $entry)
@if($entry->main_image)
 }})
@else
@endif
{{ $entry->complete_title }}
{{ \App\Livewire\Database::ENTRY_TYPES[$entry->type] }}
@if($entry->getRealPlatform())
{{ $entry->getRealPlatform()->name }}
@endif
Added {{ $entry->created_at->format('d M Y') }} by
@endforeach
{{ $entries->links( 'modcp.pagination' ) }}
@endif
@endsection