Update Framework
This commit is contained in:
parent
06f17dff5b
commit
69f3313f0f
19 changed files with 974 additions and 35 deletions
19
app/Http/Controllers/HomeController.php
Normal file
19
app/Http/Controllers/HomeController.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Runtime\Http\Controllers\Controller;
|
||||
|
||||
class HomeController extends Controller {
|
||||
|
||||
public function index()
|
||||
{
|
||||
return "index method";
|
||||
}
|
||||
|
||||
public function test()
|
||||
{
|
||||
return view('index', ['test' => 'Dit is een test']);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue