| 1234567891011121314151617181920212223242526 | <?php namespace App\Http\Controllers;use Illuminate\Routing\Controller;class HomeController extends Controller {	/*	|--------------------------------------------------------------------------	| Home Controller	|--------------------------------------------------------------------------	|	| Controller methods are called when a request enters the application	| with their assigned URI. The URI a method responds to may be set	| via simple annotations. Here is an example to get you started!	|	*/	/**	 * @Get("/")	 */	public function index()	{		return view('hello');	}}
 |