@extends('layouts.default_module')
@section('module_name')
Course Request
@stop
@section('table-properties')
width="400px" style="table-layout:fixed;"
{{-- @endsection --}}
@section('table')
|
S.No
|
Course Title
|
User Name
|
Option
|
@foreach ($course_request as $key => $cr)
|
{{ $key + 1 }}
|
{!! $cr->course->title !!}
|
{!! $cr->user->name !!}
|
@if ($cr->can_download == 1)
Allowed
@else
Pending
@endif
|
@endforeach
@section('pagination')
@endsection
@stop