6 lines
72 B
PHP
6 lines
72 B
PHP
<?php
|
|
|
|
Route::get('/', function() {
|
|
return View::make('hello');
|
|
});
|