@extends('adminlte::page')
@section('title', 'Aptitude Questions')
@section('content_header')
Aptitude Questions
@stop
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
| # |
Section |
Question |
Type |
Marks |
Actions |
@forelse ($questions as $q)
| {{ $q->id }} |
{{ $q->section }} |
{{ Str::limit($q->question_text, 50) }} |
{{ strtoupper($q->type) }} |
{{ $q->marks }} |
|
@empty
|
No questions found.
|
@endforelse
@stop