{{ $post->categories()->first()->name }}

{{ $post->title }}

Emily Chen

{{ $post->user->first_name . ' ' . $post->user->last_name }}

{{ $post->user->position }}

{{ formatDate($post->created_at) }}
{{ quillReadingTime($post->content) }}
Share: @php $currentUrl = route('blog.show', $post->slug); $xPostUrl = urlencode($currentUrl); $xShareText = urlencode("Check out this post: {$post->title}"); $facebookPostUrl = urlencode($currentUrl); $linkedinPostUrl = urlencode($currentUrl); @endphp

Table of Contents

Tags: @foreach ($tags as $tag) {{ $tag->name }} @endforeach
{{ $post->user->first_name . ' ' . $post->user->last_name }}

{{ $post->user->first_name . ' ' . $post->user->last_name }}

{{ $post->user->position }}

{{ $post->user->bio }}

@if ($post->user->linkedin_handle) @endif @if ($post->user->twitter_handle) @endif @if ($post->user->facebook_handle) @endif @if ($post->user->instagram_handle) @endif

Related Articles

@foreach ($relatedPosts as $post)
{{ $post->categories()->first()->name }}

{{ $post->title }}

{{ $post->user->first_name . ' ' . $post->user->last_name }} {{ $post->user->first_name . ' ' . $post->user->last_name }}
{{ formatDate($post->created_at) }}
@endforeach

Comments ({{ $commentCount }})

@if (session()->has('message'))
{{ session('message') }}
@endif

Leave a Comment

@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('comment') {{ $message }} @enderror
{{--
--}}
@foreach ($comments as $comment)
{{ $comment->name }}
{{ formatDateTime($comment->created_at) }}

{{ $comment->content }}

@error('replyName') {{ $message }} @enderror
@error('replyBody') {{ $message }} @enderror
@if($comment->replies()->count() > 0)
@foreach ($comment->replies as $reply)
{{ $reply->name }}
{{ formatDateTime($reply->created_at) }}

{{ $reply->content }}

@endforeach
@endif
@endforeach @if ($commentCount > $commentLimit)
@endif

Subscribe to Our Newsletter

Get the latest insights on AI and technology delivered to your inbox.

Popular Posts

@foreach($popularPosts as $post)
Popular Post

{{ $post->title }}

{{ formatDate($post->created_at) }}

@endforeach

Categories

Popular Tags

@foreach ($tags as $tag) {{ Str::title($tag->name) }} @endforeach

Stay Updated with Our Latest Insights

Join our newsletter and be the first to receive our latest articles, case studies, and technology insights directly in your inbox.

We respect your privacy. Unsubscribe at any time.

@push('meta') {{ $post->title }} - Tutapis @endpush @push('scripts') @endpush