@extends('templates.avaliacoes') @section('content')

LANÇAMENTO ANUAL DE PROVAS E TRABALHOS AVALIATIVOS

Disciplina: {{ $disciplina->descricao }}
{{--
Série: {{ $serie->descricao }}
--}}
Turma: {{ $turma->descricao }}
{!! Form::open(['route' => 'relatorios.store']) !!} @foreach($dados as $aluno) @endforeach
Aluno Conceito
1º Bimestre 2º Bimestre 3º Bismestre 4º Bismestre
{{ $aluno->nomecompleto }} {!! Form::hidden('id[]', (!empty($aluno->id)) ? $aluno->id : '',['class'=>"form-control"]) !!} {!! Form::select('aspectogeral1b_id[]', $aspectosGerais, (!empty($aluno->aspectogeral1b_id)) ? $aluno->aspectogeral1b_id : '',['class'=>"form-control aspectogeral1b_id select2"]) !!} {!! Form::select('aspectogeral2b_id[]', $aspectosGerais, (!empty($aluno->aspectogeral2b_id)) ? $aluno->aspectogeral2b_id : '',['class'=>"form-control aspectogeral2b_id select2"]) !!} {!! Form::select('aspectogeral3b_id[]', $aspectosGerais, (!empty($aluno->aspectogeral3b_id)) ? $aluno->aspectogeral3b_id : '',['class'=>"form-control aspectogeral3b_id select2"]) !!} {!! Form::select('aspectogeral4b_id[]', $aspectosGerais, (!empty($aluno->aspectogeral4b_id)) ? $aluno->aspectogeral4b_id : '',['class'=>"form-control aspectogeral4b_id select2"]) !!}
{!! Form::submit('Atualizar notas', ['class' => 'btn btn-danger click_form']) !!} {!! Form::close() !!}

{!! Form::close() !!} @endsection @section('scripts') @endsection