@extends('layouts.modcp') @section('modcp-content')
Authors {{ $items->total() }}
@csrf
@forelse($items as $author)
{{ $author->name }} {{ $author->website ?? '—' }} @if(($xfUser = $author->user()) !== null ) @endif · {{ $author->entries_count }} {{ Str::plural('entry', $author->entries_count) }}
@csrf @method('PATCH')
@csrf @method('DELETE')
@empty

No authors yet.

@endforelse
{{ $items->links() }} @endsection