@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')

{{$title}}

@if(request()->type == 'mine' && $questions->count() == 0) اسحب اسئلة جديدة @endif
@endsection @section('content')
{{--

Buttons example

--}} {{--

The Buttons extension for DataTables--}} {{-- provides a common set of options, API methods and styling to display--}} {{-- buttons on a page that will interact with a DataTable. The core library--}} {{-- provides the based framework upon which plug-ins can built.--}} {{--

--}}
عدد الاسئلة : {{$questions->total()}} (متاح للسحب : {{auth()->user()->questionCanRequest()}})
@if($questions->count() > 0) @foreach($questions as $question) @endforeach
رقم السؤال تاريخ الاجابة حالة التصحيح بواسطة {{trans('labels.action')}}
{{$question->question_id}} {{$question->updated_at}} {{$question->is_checked ? 'done' : 'pending'}} {{$question->checker->name ?? ''}}
{!!$questions->withQueryString()->links('pagination::bootstrap-4')!!}
@else
There is no Questions to reply
@endif
@endsection @section('script') @endsection