@extends('layouts.simple.master') @section('title', 'Questions & Answer List') @section('breadcrumb-title')

Questions & Answer

@endsection @section('style') @endsection @section('breadcrumb-items') @endsection @section('content')
{{-- --}}
@if (count($questions) > 0) @foreach ($questions as $index => $question) @endforeach @endif
Id Question Actions
{{ ++$index }} {{ $question->question }}
  • {{--
  • --}}
{!! $questions->links() !!}
@endsection @section('script') @endsection