mirror of
https://github.com/10h30/Test-Laravel-Routes.git
synced 2026-06-05 15:07:55 +09:00
14 lines
212 B
PHP
14 lines
212 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers;
|
||
|
|
|
||
|
|
class HomeController extends Controller
|
||
|
|
{
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
$pageTitle = 'Homepage';
|
||
|
|
|
||
|
|
return view('welcome', compact('pageTitle'));
|
||
|
|
}
|
||
|
|
}
|