Recommendations.php 315 B

1234567891011121314151617
  1. <?php
  2. namespace App\View\Components\ExamAnalysis;
  3. use Illuminate\View\Component;
  4. class Recommendations extends Component
  5. {
  6. public function __construct(
  7. public array $recommendations
  8. ) {}
  9. public function render()
  10. {
  11. return view('components.exam-analysis.recommendations');
  12. }
  13. }