简体   繁体   中英

Why shown undefined variable on laravel blade view

I am passing data from the controller to the blade view, but without session, i cant fetch the data and show my an error. 在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

I think you should return view('route_name', compact('allData')) instead

Note: compact($var_name, ...$var_names)

You could try: back()->with(['allData' => $allData]);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM