2015-12-23 49 views

回答

0

嗯,我認爲這將幫助你。

呼叫路由:

Route::get('/', '[email protected]'); 

控制器:

public function test() 
{ 
    return view('index'); 
} 

index.blade.php

{{You are in index.blade.php}} 
//Add your stuff 
+0

@Sheweta 如何調用「功能測試()」? to index.blade.php我的意思是在index.blade.php –

+0

你想把參數傳遞給你的測試方法嗎? – Shweta

+0

謝謝我試試你的代碼它的工作原理 –