@extends('frontend::layouts.master') @section('title') {{ $author->name }} | {{ $author->getMeta('designation') }} @endsection @section('content')
{{ $author->name }}

{{ $author->name }}

{{ $author->getMeta('designation') }}

{!! $author->getMeta('bio') !!}

    @if ($author->getMeta('facebook_link'))
  • @endif @if ($author->getMeta('x_link'))
  • @endif @if ($author->getMeta('instagram_link'))
  • @endif @if ($author->getMeta('linkedin_link'))
  • @endif @if ($author->getMeta('youtube_link'))
  • @endif
@forelse ($blogs as $blog)
{{ $blog?->title }}
@if ($blog?->categories && $blog?->categories->count() > 0)
@foreach ($blog?->categories as $category) @break($loop->index == 2) @endforeach
@endif

{{ $blog?->title }}

{!! Str::limit($blog?->excerpt, 140, '...') !!}
@empty @include('frontend::blog.include.blog_not_found') @endforelse
@include('frontend::components.custom-pagination', ['items' => $blogs])
@include('frontend::blog.include.blog_sidebar')
@include('frontend::components.newsletter_area')
@endsection @push('style') @endpush