@extends('layouts.main') @section('title', 'Post') @section('page_style') @endsection @section('content')
@include('includes.post_card',$post)
@forelse ($replies as $reply) @if ($loop->first)

Replies

@endif @include('includes.reply_card', compact('reply')) @empty

No reply added

@endforelse
@if ($replies->lastPage() > $replies->currentPage())
@endif
{{ auth()->user()->name }}
@endsection @push('scripts') @endpush