@card(['title' => __('Most Commented')]) @slot('subtitle') {{ __('What people are currently talking about') }} @endslot @slot('items') @foreach ($mostCommented as $post)
  • {{ $post->title }}
  • @endforeach @endslot @endcard
    @card(['title' => __('Most Active')]) @slot('subtitle') {{ __('Writers with most posts written') }} @endslot @slot('items', collect($mostActive)->pluck('name')) @endcard
    @card(['title' => __('Most Active Last Month')]) @slot('subtitle') {{ __('Users with most posts written in the month') }} @endslot @slot('items', collect($mostActiveLastMonth)->pluck('name')) @endcard