@extends('theme.default') @section('title', 'Alunos') @section('title.page', 'Alunos') @section('title.page1', 'CAE') @section('title.page2', 'Alunos') @section('title.page3', 'Lista de alunos') @section('content')
@foreach ($alunos as $aluno) @endforeach
# Nome CPF Escola Turma
{{ $aluno->id }} {{ $aluno->nome }} {{ $aluno->cpf }} {{ $aluno->turma->escola->nome }} {{ $aluno->turma->nome }}
@endsection