@extends('theme::layout.public') @section('seo_title')作家榜 - {{ Setting()->get('website_name') }}@endsection @section('content')

作家榜

@foreach($users as $index=>$user)
@if($index < 3) @else @endif

{{ $user['name'] }} @if($user['authentication_status']===1) @endif

{{ $user['title'] }}

{{ $user['articles'] }}文章 / {{ $user['supports'] }}赞同 / {{ $user['followers'] }}关注

  • @if(Auth()->guest()) @elseif(Auth()->user()->id !== $user['id']) @if(Auth()->user()->isFollowed(get_class($user->user),$user['id'])) @else @endif @endif
@endforeach
@include('theme::layout.top_user_menu')
@endsection