@extends('frontend.layout.master') @section('content')
@foreach ($forum_data as $key=>$forum)
Anonymous User {{ date("d-m-Y", strtotime($forum->created_at)) }}

{{ $forum->question }}

@if($forum->answers && count($forum->answers) > 0) {{ $forum->answers[0]->answer }} @endif

@foreach ($forum->answers as $index => $ans) @if ($index !== 0)

{{ $ans->answer }}

@endif @endforeach
{{$forum->answers->count()}}
@endforeach
@endsection @push('js') @endpush