説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

GuestLayout.php 300B

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