15 lines
206 B
PHP
15 lines
206 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
// Home page
|
|
public function index()
|
|
{
|
|
return view('pages.home');
|
|
}
|
|
}
|