@extends('layouts.app') @section('breadcrumb') @endsection @section('content')
@foreach($class->students as $student) @endforeach
Bil Student Name Email Actions View Letters
{{ $loop->iteration }} {{ $student->name }} {{ $student->email }} @foreach(['warning_1' => 'Warning 1', 'warning_2' => 'Warning 2', 'bar' => 'Bar'] as $type => $label) @php $alreadySent = $student->warningLetters->where('type', $type)->count() > 0; @endphp @endforeach View Letters
@endsection