登录后,它将重定向到http://localhost/laravel/public/home
因此,视图文件位置将是\ resources \ views \ home.blade.php。
现在在这个主页上我可以获得登录用户ID
<?php
echo $id = Auth::id();
?>
现在我已经使用
创建了控制器D:\wamp\www\laravel>php artisan make:controller HomeController
控制器已成功创建。
现在在主页上我必须根据登录用户显示一些数据。
在家庭控制器中,如果我做回声退出,但它不起作用。那么在哪个控制器文件中我必须编写代码?
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)
{
//
}
}
答案 0 :(得分:0)
您可以通过这种方式访问用户数据
{{ Auth::user()->field_name }}
例如:
{{ Auth::user()->id }}
{{ Auth::user()->name }}
{{ Auth::user()->email }}
答案 1 :(得分:0)
首先,您可能需要在routes.php
中创建路线 public static double computeHighestMonth(double[] monthlySales)
{
double highestSales = 0;
String month = "";
DateFormatSymbols dfs = new DateFormatSymbols();
for (int index = 0; index < monthlySales.length; index++)
{
if (monthlySales[index] > highestSales) {
highestSales = monthlySales[index];
month = dfs.getMonths()[index];
}
}
System.out.println(month);
return highestSales;
}
然后在HomeController的index()函数中添加代码。
答案 2 :(得分:0)
在HomeController.php
添加以下行以使用它。
use Auth;
所以,你的HomeController.php
将会是这样的
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Auth;
现在,您可以从控制器执行return Auth::user()->id
以返回Loggedin用户的ID。
看起来像这样
public function index()
{
return Auth::user()->id;
}
注意:
只有在用户获得身份验证后才能看到Auth::user()->id
。