@extends('public.layout') @section('title') {{ clean(trans('author::authors.authors')) }} @endsection @section('breadcrumb')
  • {{ clean(trans('author::authors.authors')) }}
  • @endsection @section('content')

    {{ clean(trans('author::authors.authors')) }}

    {{ intl_number($authors->total()) }} {{ trans_choice('author::authors.authors_found', $authors->total()) }}
    @forelse($authors as $author)
    @if ( ! $author->author_image->exists) {{ Theme::image('public/images/default-user-image.png') }} @else @endif

    {{ intl_number($author->ebooks_count) }} {{ trans_choice('author::authors.books_found', $author->ebooks_count) }}
    @empty

    {{ clean(trans('author::authors.no_authors_were_found')) }}

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