Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

AppLayout.php 296B

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