我正在尝试从上一页获得标题名称。只有一件事,不是形式,不是数组。只有一个值。
我的问题:laravel是否为我们提供了一个简单的解决方案而不在函数中使用$request
?
在laravel中,我们可以使用->back()
轻松返回上一页,或者我们可以使用中间件$next
进行下一步。
我知道发送数据必须采取后期行动。但是上一页的价值可能会有所不同。
edit1:
public function show($slug)
{
$localeCode = LaravelLocalization::getCurrentLocale();
$updates = Update::latest()->limit(3)->get();
$slug_id = InvestmentCategory::where('slug',$slug)->orderBy('created_at','desc')->first()->id;
#$category_slug = InvestmentCategory::where('slug', $slug)->orderBy('created_at', 'desc')->first();
$invest = Investment::where('category_id', '=', $slug_id)->first();
$top_categories = InvestmentCategory::where('parent_id', '=', null)->orderBy('created_at', 'desc')->take(4)->get();
$bottom_categories = InvestmentCategory::where('parent_id', '=', $slug_id)->orderBy('created_at', 'desc')->limit(4)->get();
return view('frontend.investments', compact('localeCode', 'updates', 'invest', 'top_categories', 'bottom_categories', 'slug'));
}