21 lines
307 B
PHP
21 lines
307 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
class Mypage extends BaseController
|
|
{
|
|
|
|
public function index()
|
|
{
|
|
echo "Ameye 001";
|
|
// return view('tools/index');
|
|
}
|
|
|
|
public function show(string $userPageName)
|
|
{
|
|
$data = [];
|
|
return view('userpage/index', $data);
|
|
}
|
|
|
|
|
|
} |