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

Questions

@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