@extends('layouts.default_module') @section('module_name') Student Group List @stop @section('table-properties') width="400px" style="table-layout:fixed;" @endsection @section('table') Name Checkbox @foreach ($student as $t) {!! ucwords($t->name) !!}
Notice: Undefined variable: t in /home/demohatinco/public_html/fv_lms_pro_backend/resources/views/admin/student_group_list/index.blade.php on line 33

Notice: Trying to get property 'id' of non-object in /home/demohatinco/public_html/fv_lms_pro_backend/resources/views/admin/student_group_list/index.blade.php on line 33

Notice: Undefined variable: group_users in /home/demohatinco/public_html/fv_lms_pro_backend/resources/views/admin/student_group_list/index.blade.php on line 33

Warning: in_array() expects parameter 2 to be array, null given in /home/demohatinco/public_html/fv_lms_pro_backend/resources/views/admin/student_group_list/index.blade.php on line 33
{!! Form::checkbox('question', null,$checkbox, ['onClick' => 'check_uncheck_student(' . $t->id . ',' . $group->id . ')']) !!}
@endforeach @section('pagination')
{!! Form::open(['method' => 'get', 'route' => ['group.index']]) !!} {!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!} {!! Form::close() !!}
@endsection @section('app_jquery') @endsection @stop