temp.php 473 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace App\View\Components;
  3. use Illuminate\View\Component;
  4. class temp extends Component
  5. {
  6. /**
  7. * Create a new component instance.
  8. *
  9. * @return void
  10. */
  11. public function __construct()
  12. {
  13. //
  14. }
  15. /**
  16. * Get the view / contents that represent the component.
  17. *
  18. * @return \Illuminate\Contracts\View\View|\Closure|string
  19. */
  20. public function render()
  21. {
  22. return view('components.temp');
  23. }
  24. }