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