AppLayout.php 308 B

123456789101112131415161718
  1. <?php
  2. namespace App\View\Components;
  3. use Illuminate\View\Component;
  4. class AppLayout extends Component
  5. {
  6. /**
  7. * Get the view / contents that represents the component.
  8. *
  9. * @return \Illuminate\View\View
  10. */
  11. public function render()
  12. {
  13. return view('layouts.app');
  14. }
  15. }