Commit 494580dc authored by Yuri Resende's avatar Yuri Resende
Browse files

Base da tela de relatório

parent 09242af3
...@@ -610,7 +610,9 @@ class PadController extends Controller ...@@ -610,7 +610,9 @@ class PadController extends Controller
} }
public function relatorio($id){ public function relatorio($id){
dd("Pagina do relatório"); $menu = MenuItemsAvaliador::REPORT;
$pad = Pad::find($id);
return view('pad.relatorio.relatorio', ['pad' => $pad, 'index_menu' => $menu]);
} }
} }
@extends('layouts.main')
@section('header')
@include('layouts.header', [
'user' => Auth::user(),
])
@endsection
@section('nav')
@include('layouts.navigation', ['menu' => $index_menu])
@endsection
@section('title', 'Relatórios')
@section('body')
<div class="tab-content">
<div class="tab-pane active" id="home" role="tabpanel" aria-labelledby="home-tab">
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 class="h2">Relatórios</h1>
</div>
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3">
<h3>
<i class="bi bi-exclamation-octagon-fill"></i>
Relatório pad {{$pad->nome}}
</h3>
</div>
<table class="table">
<thead>
<th scope='col'>Professor</th>
<th scope='col'>Ch Ensino</th>
<th scope='col'>Ch Pesqiosa</th>
<th scope='col'>Ch Extensão</th>
<th scope='col'>Ch Gestão</th>
<th scope='col'>Curso</th>
</thead>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<tbody>
</tbody>
</table>
</div>
</div>
@endsection
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment