@extends('layouts.main') @section('title', 'Unidade') @section('header') @include('layouts.header', [ 'user' => Auth::user(), ]) @endsection @section('nav') @include('layouts.navigation', [ 'index_menu' => $index_menu, ]) @endsection @section('body')
1 - ENSINO (AULAS EM COMPONENTES CURRICULARES)

@foreach ($ensinoAulas as $ensinoAula) @endforeach
CÓDIGO ATIVIDADE COMPONENTE CURRICULAR (NOME DO COMPONENTE) CURSO NÍVEL MODALIDADE CH TOTAL CH SEMANAL
{{ $ensinoAula->cod_atividade }} {{ $ensinoAula->disciplina->name }} {{ $ensinoAula->curso->name }} {{ $ensinoAula::listNivel($ensinoAula->nivel) }} {{ $ensinoAula::listModalidade($ensinoAula->modalidade) }} {{ $ensinoAula->ch_semanal }} {{ $ensinoAula->ch_total }} @include('components.buttons.btn-delete', ['route' => route('ensino_aula_delete', ['id' => $ensinoAula->id])]);
@csrf @method('POST')

@endsection @section('scripts-jquery') @include('layouts.pad-ensino-jquery.ensino-aula') @endsection