@extends('frontend.layout')
@section('title','Pofile')
@push('css')
@endpush
@section('content')
{{ $author->name }}
@if($posts->count() > 0)
@foreach($posts as $post)
@endforeach
@else
@endif
{{--
LOAD MORE--}}
ABOUT AUTHOR
{{ $author->name }}
{{ $author->about }}
Author Since: {{ $author->created_at->toDateString() }}
Total Posts : {{ $author->posts->count() }}
@endsection
@push('js')
@endpush