登錄後會重定向到http://localhost/laravel/public/homeLaravel 5主頁控制器
所以查看文件的位置將被\資源\意見\ home.blade.php。
現在這個主頁上我可以在使用
D:\wamp\www\laravel>php artisan make:controller HomeController
控制器創建成功獲得登錄用戶ID
<?php
echo $id = Auth::id();
?>
現在我已創建控制器。
現在,在首頁我必須顯示一些數據的基礎上登錄用戶。
在家庭控制器,如果我做回聲退出,但它不工作。那麼在哪個控制器文件中我必須編寫代碼?
HomeController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
class HomeController extends Controller
{
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
}
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param Request $request
* @return Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param int $id
* @return Response
*/
public function show($id)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return Response
*/
public function edit($id)
{
//
}
/**
* Update the specified resource in storage.
*
* @param Request $request
* @param int $id
* @return Response
*/
public function update(Request $request, $id)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return Response
*/
public function destroy($id)
{
//
}
}
顯示您的家庭控制器 –
已添加問題。 –
這只是我還是這個問題真的含糊不清?我假設你有你的路線工作,你的中間件設置,你有你的觀點返回,但**你只是想從'Auth :: user()** **檢索數據? – ash