@extends('layouts.blesser.app') @section('content')
@forelse ($questions as $question )

{{ $question->title }} {{ $question->category->name }}

({{ $question->answers->count() }}) {{ __('answers') }}


{{ $question->body }}

@empty

{{ __('what topic are you looking for?') }}

{{ __('Search for your desired topic or choose from the categories below') }}

{{ __('Not Found') }}
@endforelse {{ $questions->links('pagination.blesser') }}
@endsection