@extends('layouts.default_module')
@section('module_name')
List of {{ucwords($group->name)}} Group Exam
@stop
@section('add_btn')
{!! Form::open(['method' => 'post', 'url' => ['admin/group_exams/create'], 'files'=>true]) !!}
{!! Form::submit('Add', ['class' => 'btn btn-success pull-right']) !!}
{!! Form::close() !!}
@stop
@section('table-properties')
width="400px" style="table-layout:fixed;"
@endsection
@section('table')
@foreach($group_exams as $e)
Exam Name
Detail
@endforeach
{{$e->exams->name}}
{{$e->exams->detail}}