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