I have a method in my controller, PostsController:
public function index()
{
$post = Posts::where('id', '1')->get(['post']);
return $post;
}
web.php
Route::get('test', [PostsController::class, 'index']);
into test.blade.php in my views folder, and show it with
{{ $post }}
This works perfectly. However, when I try to do the exact same thing to the dashboard.blade.php, I get
Undefined variable $post
When trying to get this data on dashboard, I use this in app.php instead.
Route::get('dashboard', [PostsController::class, 'index']);
I was expecting to get the same data on the dashboard as in test.blade.php, but it cannot find the variable anymore as soon as I change the view in the route. What am I doing wrong?
CodePudding user response:
try this
return view('test', [
'post' => Posts::where('id', '1')->get()
]);
and if your test.blade is not directly inside the views folder you need to specify the folder like that: view('folderName.test', ...)
and for more information, you can check the documentation https://laravel.com/docs/9.x/controllers
CodePudding user response:
I was just being dumb - view wasn't a view at all.