URL Shortener 1.0
A Laravel-based URL shortener application
Chargement...
Recherche...
Aucune correspondance
GuestLayout.php
Aller à la documentation de ce fichier.
1<?php
2
3namespace App\View\Components;
4
5use Illuminate\View\Component;
6use Illuminate\View\View;
7
8class GuestLayout extends Component
9{
13 public function render(): View
14 {
15 return view('layouts.guest');
16 }
17}
render()
Get the view / contents that represents the component.