@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º Bismestre 2º Bismestre 3º Bismestre 4º Bismestre
{{ $aluno->nomecompleto }} {!! Form::hidden('id[]', (!empty($aluno->id)) ? $aluno->id : '',['class'=>"form-control"]) !!} {!! Form::select('rendimento1b_id[]', $rendimentoEscolar, (!empty($aluno->rendimento1b_id)) ? $aluno->rendimento1b_id : '',['class'=>"form-control rendimento1b_id select2"]) !!} {!! Form::select('rendimento2b_id[]', $rendimentoEscolar, (!empty($aluno->rendimento2b_id)) ? $aluno->rendimento2b_id : '',['class'=>"form-control rendimento2b_id select2"]) !!} {!! Form::select('rendimento3b_id[]', $rendimentoEscolar, (!empty($aluno->rendimento3b_id)) ? $aluno->rendimento3b_id : '',['class'=>"form-control rendimento3b_id select2"]) !!} {!! Form::select('rendimento4b_id[]', $rendimentoEscolar, (!empty($aluno->rendimento4b_id)) ? $aluno->rendimento4b_id : '',['class'=>"form-control rendimento4b_id select2"]) !!}
{!! Form::submit('Atualizar notas', ['class' => 'btn btn-danger click_form']) !!} {!! Form::close() !!}

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