@extends('layouts.backend.master') @section('title','Authors') @push('css') @endpush @section('content')

ALL AUTHORS {{ $authors->count() }}

@foreach($authors as $key=>$author) @endforeach
ID Name Posts Comments Favorite Posts Created At Action
ID Name Posts Comments Favorite Posts Created At Action
{{ $key + 1 }} {{ $author->name }} {{ $author->posts_count }} {{ $author->comments_count }} {{ $author->favorite_posts_count }} {{ $author->created_at->toDateString() }}
@endsection @push('js') @endpush