| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | use Maatwebsite\Excel\Concerns\ShouldAutoSize; |
||
| 12 | use Maatwebsite\Excel\Events\AfterSheet; |
||
| 13 | use SET\Training; |
||
| 14 | use SET\User; |
||
| 15 | |||
| 16 | class CompletedTrainingExportHandler implements FromView, WithEvents, ShouldAutoSize, WithTitle |
||
| 17 | { |
||
| 18 | public function view(): View |
||
| 19 | { |
||
| 20 | $trainings = Training::all(); |
||
| 21 | $users = User::skipSystem()->with([ |
||
| 22 | 'assignedTrainings' => function ($q) { |
||
| 23 | $q->whereNotNull('completed_date')->orderBy('completed_date', 'desc'); |
||
| 24 | }, |
||
| 48 |