LearningPath.php 186 B

12345678910111213
  1. <?php
  2. namespace App\Livewire;
  3. use Livewire\Component;
  4. class LearningPath extends Component
  5. {
  6. public function render()
  7. {
  8. return view('livewire.learning-path');
  9. }
  10. }