Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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. }