mirror of
https://github.com/supanadit/todo.git
synced 2024-11-22 18:26:25 +00:00
14 lines
186 B
PHP
Executable File
14 lines
186 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class TodoController extends Controller
|
|
{
|
|
public function viewHome()
|
|
{
|
|
return view('home');
|
|
}
|
|
}
|