如何在Laravel中传递控制器数据以进行查看

时间:2019-02-25 10:21:28

标签: php html laravel

我想知道如何使用Laravel将控制器数据传递到视图。 这是我的控制器:

     $ourput =   DB::table('database')
                    ->leftjoin('table', 'database.id', '=', 'table.id')
                  //  ->leftjoin('table', 'table.type_id', '=', 'table.type.id')
                    ->where('database.id', '=', $sess_id )
                     -


                     ->get();
             if($Data){
                return redirect('view')->with('key', $value); 
            }else{
                return FALSE;
            }

        }

1 个答案:

答案 0 :(得分:1)

我相信您应该尝试返回一个视图,而不是HTTP重定向响应。在这种情况下,请执行以下操作:

return redirect('driverprofile')->with('driverprofiles', $driverData);

它应该读这样的东西

return view('driverprofile')->with('driverprofiles', $driverData);