mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
13 lines
No EOL
178 B
PHP
13 lines
No EOL
178 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use View;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
public function getIndex()
|
|
{
|
|
return View::make('home.index');
|
|
}
|
|
} |