@extends('front.layouts.master-auth') @section('css') @endsection @section('content') {{-- Author Header --}} {{ $author->name }} @if($author->title) {{ $author->title }} @endif @if($author->detail) {{ $author->detail }} @endif {{-- Page Title --}} @lang('Articles by') {{ $author->name }} ({{ $blogs->total() }} @lang('Article')) {{-- Blog Grid --}} @if(count($blogs) > 0) @foreach($blogs as $blog) @include('front.blog._blog_card', ['blog' => $blog]) @endforeach {{-- Pagination --}} @if($blogs->hasPages()) {{ $blogs->withQueryString()->links('front.pagination') }} @endif @else @lang('No articles found for this author.') @endif @endsection
{{ $author->title }}
{{ $author->detail }}
@lang('No articles found for this author.')