Passing parameters to Route : Missing required parameters for [Route: post] error
I am trying to pass a parameter id
from my view to the route. I my view blog.blade.php
, I did the following :
<a href="{{ route('post', ['id' => $post->id ] ) }}" class="btn btn-primary">Read More </a>
My route looks like :
Route::get('blog/post/{id}', [
'uses' => 'PostController@getPost',
'as' => 'post'
]);
And my controller action looks like :
public function getPost( $id)
{
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
But whenever I load the page I get the following error
Missing required parameters for [Route: post] [URI: blog/post/{id}]. (View: D:Web DevelopmentACESresourcesviewssectionblog.blade.php)
I checked whether the value of $post->id
exists by displaying it on the view and it exists
More
I tried removing the {id}
part from the route and made it like
Route::get('blog/post/', [
'uses' => 'PostController@getPost',
'as' => 'post'
]);
The Page loads but the link looks like :
http://localhost/blog/post?id=2
Then I get error in Controller
Why is this happening ? Why is the parameter not being passed to the route?
I am using Laravel 5.7
Update
php artisan route:list
looks like this
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
| Domain | Method | URI | Name | Action | Middleware |
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
| | GET|HEAD | / | home | Closure | web |
| | GET|HEAD | about-us | about | Closure | web |
| | GET|HEAD | aces-admin | admin.home | Closure | web |
| | GET|HEAD | aces-admin/all-posts | admin.allposts | Closure | web |
| | GET|HEAD | aces-admin/all-users | admin.allusers | Closure | web |
| | GET|HEAD | aces-admin/edit-events | admin.events | Closure | web |
| | GET|HEAD | aces-admin/edit-messages | admin.messages | Closure | web |
| | GET|HEAD | aces-admin/edit-study-materials | admin.study | Closure | web |
| | GET|HEAD | aces-admin/manage-photos | admin.photos | Closure | web |
| | GET|HEAD | api/user | | Closure | api,auth:api |
| | GET|HEAD | blog | blog | AppHttpControllersPostController@getIndex | web |
| | GET|HEAD | blog/create | create | Closure | web |
| | GET|HEAD | blog/post/{id} | post | AppHttpControllersPostController@getPost | web |
| | GET|HEAD | events | event | Closure | web |
| | GET|HEAD | gallery | gallery | Closure | web |
| | GET|HEAD | login | login | AppHttpControllersAuthLoginController@showLoginForm | web,guest |
| | POST | login | | AppHttpControllersAuthLoginController@login | web,guest |
| | POST | logout | logout | AppHttpControllersAuthLoginController@logout | web |
| | POST | password/email | password.email | AppHttpControllersAuthForgotPasswordController@sendResetLinkEmail | web,guest |
| | GET|HEAD | password/reset | password.request | AppHttpControllersAuthForgotPasswordController@showLinkRequestForm | web,guest |
| | POST | password/reset | password.update | AppHttpControllersAuthResetPasswordController@reset | web,guest |
| | GET|HEAD | password/reset/{token} | password.reset | AppHttpControllersAuthResetPasswordController@showResetForm | web,guest |
| | GET|HEAD | register | register | AppHttpControllersAuthRegisterController@showRegistrationForm | web,guest |
| | POST | register | | AppHttpControllersAuthRegisterController@register | web,guest |
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
php laravel routes
add a comment |
I am trying to pass a parameter id
from my view to the route. I my view blog.blade.php
, I did the following :
<a href="{{ route('post', ['id' => $post->id ] ) }}" class="btn btn-primary">Read More </a>
My route looks like :
Route::get('blog/post/{id}', [
'uses' => 'PostController@getPost',
'as' => 'post'
]);
And my controller action looks like :
public function getPost( $id)
{
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
But whenever I load the page I get the following error
Missing required parameters for [Route: post] [URI: blog/post/{id}]. (View: D:Web DevelopmentACESresourcesviewssectionblog.blade.php)
I checked whether the value of $post->id
exists by displaying it on the view and it exists
More
I tried removing the {id}
part from the route and made it like
Route::get('blog/post/', [
'uses' => 'PostController@getPost',
'as' => 'post'
]);
The Page loads but the link looks like :
http://localhost/blog/post?id=2
Then I get error in Controller
Why is this happening ? Why is the parameter not being passed to the route?
I am using Laravel 5.7
Update
php artisan route:list
looks like this
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
| Domain | Method | URI | Name | Action | Middleware |
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
| | GET|HEAD | / | home | Closure | web |
| | GET|HEAD | about-us | about | Closure | web |
| | GET|HEAD | aces-admin | admin.home | Closure | web |
| | GET|HEAD | aces-admin/all-posts | admin.allposts | Closure | web |
| | GET|HEAD | aces-admin/all-users | admin.allusers | Closure | web |
| | GET|HEAD | aces-admin/edit-events | admin.events | Closure | web |
| | GET|HEAD | aces-admin/edit-messages | admin.messages | Closure | web |
| | GET|HEAD | aces-admin/edit-study-materials | admin.study | Closure | web |
| | GET|HEAD | aces-admin/manage-photos | admin.photos | Closure | web |
| | GET|HEAD | api/user | | Closure | api,auth:api |
| | GET|HEAD | blog | blog | AppHttpControllersPostController@getIndex | web |
| | GET|HEAD | blog/create | create | Closure | web |
| | GET|HEAD | blog/post/{id} | post | AppHttpControllersPostController@getPost | web |
| | GET|HEAD | events | event | Closure | web |
| | GET|HEAD | gallery | gallery | Closure | web |
| | GET|HEAD | login | login | AppHttpControllersAuthLoginController@showLoginForm | web,guest |
| | POST | login | | AppHttpControllersAuthLoginController@login | web,guest |
| | POST | logout | logout | AppHttpControllersAuthLoginController@logout | web |
| | POST | password/email | password.email | AppHttpControllersAuthForgotPasswordController@sendResetLinkEmail | web,guest |
| | GET|HEAD | password/reset | password.request | AppHttpControllersAuthForgotPasswordController@showLinkRequestForm | web,guest |
| | POST | password/reset | password.update | AppHttpControllersAuthResetPasswordController@reset | web,guest |
| | GET|HEAD | password/reset/{token} | password.reset | AppHttpControllersAuthResetPasswordController@showResetForm | web,guest |
| | GET|HEAD | register | register | AppHttpControllersAuthRegisterController@showRegistrationForm | web,guest |
| | POST | register | | AppHttpControllersAuthRegisterController@register | web,guest |
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
php laravel routes
is post route under a route group ? if is can you add parent route group ?
– Teoman Tıngır
Jan 1 at 17:23
Hei, if you inspect the a element how does the link look?
– Răducanu Ionuţ
Jan 1 at 17:26
@Teoman The post route is not under any route group.
– Xitish
Jan 2 at 5:25
@Răducanu I have already stated that in the question. With the route likeRoute::get('blog/post/{id}', ....
I get the error and laravel error page is displayed. (So I can't find how link looks). But if I remove{id}
fron route and make it likeRoute::get('blog/post/', ....
, the link looks likehttp://localhost/blog/post?id=2
– Xitish
Jan 2 at 5:28
@Xitish if you still wish to debug this you could set it optional param with ? ( {id?} ) and see the generated url.
– Răducanu Ionuţ
Jan 3 at 10:55
add a comment |
I am trying to pass a parameter id
from my view to the route. I my view blog.blade.php
, I did the following :
<a href="{{ route('post', ['id' => $post->id ] ) }}" class="btn btn-primary">Read More </a>
My route looks like :
Route::get('blog/post/{id}', [
'uses' => 'PostController@getPost',
'as' => 'post'
]);
And my controller action looks like :
public function getPost( $id)
{
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
But whenever I load the page I get the following error
Missing required parameters for [Route: post] [URI: blog/post/{id}]. (View: D:Web DevelopmentACESresourcesviewssectionblog.blade.php)
I checked whether the value of $post->id
exists by displaying it on the view and it exists
More
I tried removing the {id}
part from the route and made it like
Route::get('blog/post/', [
'uses' => 'PostController@getPost',
'as' => 'post'
]);
The Page loads but the link looks like :
http://localhost/blog/post?id=2
Then I get error in Controller
Why is this happening ? Why is the parameter not being passed to the route?
I am using Laravel 5.7
Update
php artisan route:list
looks like this
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
| Domain | Method | URI | Name | Action | Middleware |
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
| | GET|HEAD | / | home | Closure | web |
| | GET|HEAD | about-us | about | Closure | web |
| | GET|HEAD | aces-admin | admin.home | Closure | web |
| | GET|HEAD | aces-admin/all-posts | admin.allposts | Closure | web |
| | GET|HEAD | aces-admin/all-users | admin.allusers | Closure | web |
| | GET|HEAD | aces-admin/edit-events | admin.events | Closure | web |
| | GET|HEAD | aces-admin/edit-messages | admin.messages | Closure | web |
| | GET|HEAD | aces-admin/edit-study-materials | admin.study | Closure | web |
| | GET|HEAD | aces-admin/manage-photos | admin.photos | Closure | web |
| | GET|HEAD | api/user | | Closure | api,auth:api |
| | GET|HEAD | blog | blog | AppHttpControllersPostController@getIndex | web |
| | GET|HEAD | blog/create | create | Closure | web |
| | GET|HEAD | blog/post/{id} | post | AppHttpControllersPostController@getPost | web |
| | GET|HEAD | events | event | Closure | web |
| | GET|HEAD | gallery | gallery | Closure | web |
| | GET|HEAD | login | login | AppHttpControllersAuthLoginController@showLoginForm | web,guest |
| | POST | login | | AppHttpControllersAuthLoginController@login | web,guest |
| | POST | logout | logout | AppHttpControllersAuthLoginController@logout | web |
| | POST | password/email | password.email | AppHttpControllersAuthForgotPasswordController@sendResetLinkEmail | web,guest |
| | GET|HEAD | password/reset | password.request | AppHttpControllersAuthForgotPasswordController@showLinkRequestForm | web,guest |
| | POST | password/reset | password.update | AppHttpControllersAuthResetPasswordController@reset | web,guest |
| | GET|HEAD | password/reset/{token} | password.reset | AppHttpControllersAuthResetPasswordController@showResetForm | web,guest |
| | GET|HEAD | register | register | AppHttpControllersAuthRegisterController@showRegistrationForm | web,guest |
| | POST | register | | AppHttpControllersAuthRegisterController@register | web,guest |
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
php laravel routes
I am trying to pass a parameter id
from my view to the route. I my view blog.blade.php
, I did the following :
<a href="{{ route('post', ['id' => $post->id ] ) }}" class="btn btn-primary">Read More </a>
My route looks like :
Route::get('blog/post/{id}', [
'uses' => 'PostController@getPost',
'as' => 'post'
]);
And my controller action looks like :
public function getPost( $id)
{
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
But whenever I load the page I get the following error
Missing required parameters for [Route: post] [URI: blog/post/{id}]. (View: D:Web DevelopmentACESresourcesviewssectionblog.blade.php)
I checked whether the value of $post->id
exists by displaying it on the view and it exists
More
I tried removing the {id}
part from the route and made it like
Route::get('blog/post/', [
'uses' => 'PostController@getPost',
'as' => 'post'
]);
The Page loads but the link looks like :
http://localhost/blog/post?id=2
Then I get error in Controller
Why is this happening ? Why is the parameter not being passed to the route?
I am using Laravel 5.7
Update
php artisan route:list
looks like this
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
| Domain | Method | URI | Name | Action | Middleware |
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
| | GET|HEAD | / | home | Closure | web |
| | GET|HEAD | about-us | about | Closure | web |
| | GET|HEAD | aces-admin | admin.home | Closure | web |
| | GET|HEAD | aces-admin/all-posts | admin.allposts | Closure | web |
| | GET|HEAD | aces-admin/all-users | admin.allusers | Closure | web |
| | GET|HEAD | aces-admin/edit-events | admin.events | Closure | web |
| | GET|HEAD | aces-admin/edit-messages | admin.messages | Closure | web |
| | GET|HEAD | aces-admin/edit-study-materials | admin.study | Closure | web |
| | GET|HEAD | aces-admin/manage-photos | admin.photos | Closure | web |
| | GET|HEAD | api/user | | Closure | api,auth:api |
| | GET|HEAD | blog | blog | AppHttpControllersPostController@getIndex | web |
| | GET|HEAD | blog/create | create | Closure | web |
| | GET|HEAD | blog/post/{id} | post | AppHttpControllersPostController@getPost | web |
| | GET|HEAD | events | event | Closure | web |
| | GET|HEAD | gallery | gallery | Closure | web |
| | GET|HEAD | login | login | AppHttpControllersAuthLoginController@showLoginForm | web,guest |
| | POST | login | | AppHttpControllersAuthLoginController@login | web,guest |
| | POST | logout | logout | AppHttpControllersAuthLoginController@logout | web |
| | POST | password/email | password.email | AppHttpControllersAuthForgotPasswordController@sendResetLinkEmail | web,guest |
| | GET|HEAD | password/reset | password.request | AppHttpControllersAuthForgotPasswordController@showLinkRequestForm | web,guest |
| | POST | password/reset | password.update | AppHttpControllersAuthResetPasswordController@reset | web,guest |
| | GET|HEAD | password/reset/{token} | password.reset | AppHttpControllersAuthResetPasswordController@showResetForm | web,guest |
| | GET|HEAD | register | register | AppHttpControllersAuthRegisterController@showRegistrationForm | web,guest |
| | POST | register | | AppHttpControllersAuthRegisterController@register | web,guest |
+--------+----------+---------------------------------+------------------+------------------------------------------------------------------------+--------------+
php laravel routes
php laravel routes
edited Jan 1 at 16:44
Xitish
asked Jan 1 at 16:25
XitishXitish
76211
76211
is post route under a route group ? if is can you add parent route group ?
– Teoman Tıngır
Jan 1 at 17:23
Hei, if you inspect the a element how does the link look?
– Răducanu Ionuţ
Jan 1 at 17:26
@Teoman The post route is not under any route group.
– Xitish
Jan 2 at 5:25
@Răducanu I have already stated that in the question. With the route likeRoute::get('blog/post/{id}', ....
I get the error and laravel error page is displayed. (So I can't find how link looks). But if I remove{id}
fron route and make it likeRoute::get('blog/post/', ....
, the link looks likehttp://localhost/blog/post?id=2
– Xitish
Jan 2 at 5:28
@Xitish if you still wish to debug this you could set it optional param with ? ( {id?} ) and see the generated url.
– Răducanu Ionuţ
Jan 3 at 10:55
add a comment |
is post route under a route group ? if is can you add parent route group ?
– Teoman Tıngır
Jan 1 at 17:23
Hei, if you inspect the a element how does the link look?
– Răducanu Ionuţ
Jan 1 at 17:26
@Teoman The post route is not under any route group.
– Xitish
Jan 2 at 5:25
@Răducanu I have already stated that in the question. With the route likeRoute::get('blog/post/{id}', ....
I get the error and laravel error page is displayed. (So I can't find how link looks). But if I remove{id}
fron route and make it likeRoute::get('blog/post/', ....
, the link looks likehttp://localhost/blog/post?id=2
– Xitish
Jan 2 at 5:28
@Xitish if you still wish to debug this you could set it optional param with ? ( {id?} ) and see the generated url.
– Răducanu Ionuţ
Jan 3 at 10:55
is post route under a route group ? if is can you add parent route group ?
– Teoman Tıngır
Jan 1 at 17:23
is post route under a route group ? if is can you add parent route group ?
– Teoman Tıngır
Jan 1 at 17:23
Hei, if you inspect the a element how does the link look?
– Răducanu Ionuţ
Jan 1 at 17:26
Hei, if you inspect the a element how does the link look?
– Răducanu Ionuţ
Jan 1 at 17:26
@Teoman The post route is not under any route group.
– Xitish
Jan 2 at 5:25
@Teoman The post route is not under any route group.
– Xitish
Jan 2 at 5:25
@Răducanu I have already stated that in the question. With the route like
Route::get('blog/post/{id}', ....
I get the error and laravel error page is displayed. (So I can't find how link looks). But if I remove {id}
fron route and make it like Route::get('blog/post/', ....
, the link looks like http://localhost/blog/post?id=2
– Xitish
Jan 2 at 5:28
@Răducanu I have already stated that in the question. With the route like
Route::get('blog/post/{id}', ....
I get the error and laravel error page is displayed. (So I can't find how link looks). But if I remove {id}
fron route and make it like Route::get('blog/post/', ....
, the link looks like http://localhost/blog/post?id=2
– Xitish
Jan 2 at 5:28
@Xitish if you still wish to debug this you could set it optional param with ? ( {id?} ) and see the generated url.
– Răducanu Ionuţ
Jan 3 at 10:55
@Xitish if you still wish to debug this you could set it optional param with ? ( {id?} ) and see the generated url.
– Răducanu Ionuţ
Jan 3 at 10:55
add a comment |
3 Answers
3
active
oldest
votes
Try your second method and update your controller like below.
public function getPost(Request $request)
{
$id = $request->get('id');
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
That didn't help
– Xitish
Jan 1 at 16:34
Can you post the "php artisan route:list" result here ?
– Md.Sukel Ali
Jan 1 at 16:36
I have update the question with route list
– Xitish
Jan 1 at 16:44
1
In your second method, You don't pass parameter. You pass a request. as your route don't have any parameter localhost/blog/post?id=2. So, you can access the id by request and that's why i updated your controller code. Just try it.
– Md.Sukel Ali
Jan 2 at 5:38
1
It was a silly mistake. I had a two references topost
route in my view. I was unaware of the first reference which was called without passing the parameter. That was causing the problem.
– Xitish
Jan 2 at 5:52
|
show 5 more comments
To view your post, you don't need to use a route in your anchor tag. Try this:
<a href="/blog/post{{ $post->id }}" class="btn btn-primary">Read More </a>
Laravel will automaticlly pickup the ID if you have set up your controller correctly.
add a comment |
define your route in this form :
Route::get('blog/post/{id}', 'PostController@getPost')->name('post');
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53997046%2fpassing-parameters-to-route-missing-required-parameters-for-route-post-erro%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try your second method and update your controller like below.
public function getPost(Request $request)
{
$id = $request->get('id');
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
That didn't help
– Xitish
Jan 1 at 16:34
Can you post the "php artisan route:list" result here ?
– Md.Sukel Ali
Jan 1 at 16:36
I have update the question with route list
– Xitish
Jan 1 at 16:44
1
In your second method, You don't pass parameter. You pass a request. as your route don't have any parameter localhost/blog/post?id=2. So, you can access the id by request and that's why i updated your controller code. Just try it.
– Md.Sukel Ali
Jan 2 at 5:38
1
It was a silly mistake. I had a two references topost
route in my view. I was unaware of the first reference which was called without passing the parameter. That was causing the problem.
– Xitish
Jan 2 at 5:52
|
show 5 more comments
Try your second method and update your controller like below.
public function getPost(Request $request)
{
$id = $request->get('id');
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
That didn't help
– Xitish
Jan 1 at 16:34
Can you post the "php artisan route:list" result here ?
– Md.Sukel Ali
Jan 1 at 16:36
I have update the question with route list
– Xitish
Jan 1 at 16:44
1
In your second method, You don't pass parameter. You pass a request. as your route don't have any parameter localhost/blog/post?id=2. So, you can access the id by request and that's why i updated your controller code. Just try it.
– Md.Sukel Ali
Jan 2 at 5:38
1
It was a silly mistake. I had a two references topost
route in my view. I was unaware of the first reference which was called without passing the parameter. That was causing the problem.
– Xitish
Jan 2 at 5:52
|
show 5 more comments
Try your second method and update your controller like below.
public function getPost(Request $request)
{
$id = $request->get('id');
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
Try your second method and update your controller like below.
public function getPost(Request $request)
{
$id = $request->get('id');
$post = Post::where('id','=',$id)->with('likes')->with('user')->first();
return view('section.blog', ['post' => $post]);
}
edited Jan 1 at 17:12
answered Jan 1 at 16:29


Md.Sukel AliMd.Sukel Ali
1,1761717
1,1761717
That didn't help
– Xitish
Jan 1 at 16:34
Can you post the "php artisan route:list" result here ?
– Md.Sukel Ali
Jan 1 at 16:36
I have update the question with route list
– Xitish
Jan 1 at 16:44
1
In your second method, You don't pass parameter. You pass a request. as your route don't have any parameter localhost/blog/post?id=2. So, you can access the id by request and that's why i updated your controller code. Just try it.
– Md.Sukel Ali
Jan 2 at 5:38
1
It was a silly mistake. I had a two references topost
route in my view. I was unaware of the first reference which was called without passing the parameter. That was causing the problem.
– Xitish
Jan 2 at 5:52
|
show 5 more comments
That didn't help
– Xitish
Jan 1 at 16:34
Can you post the "php artisan route:list" result here ?
– Md.Sukel Ali
Jan 1 at 16:36
I have update the question with route list
– Xitish
Jan 1 at 16:44
1
In your second method, You don't pass parameter. You pass a request. as your route don't have any parameter localhost/blog/post?id=2. So, you can access the id by request and that's why i updated your controller code. Just try it.
– Md.Sukel Ali
Jan 2 at 5:38
1
It was a silly mistake. I had a two references topost
route in my view. I was unaware of the first reference which was called without passing the parameter. That was causing the problem.
– Xitish
Jan 2 at 5:52
That didn't help
– Xitish
Jan 1 at 16:34
That didn't help
– Xitish
Jan 1 at 16:34
Can you post the "php artisan route:list" result here ?
– Md.Sukel Ali
Jan 1 at 16:36
Can you post the "php artisan route:list" result here ?
– Md.Sukel Ali
Jan 1 at 16:36
I have update the question with route list
– Xitish
Jan 1 at 16:44
I have update the question with route list
– Xitish
Jan 1 at 16:44
1
1
In your second method, You don't pass parameter. You pass a request. as your route don't have any parameter localhost/blog/post?id=2. So, you can access the id by request and that's why i updated your controller code. Just try it.
– Md.Sukel Ali
Jan 2 at 5:38
In your second method, You don't pass parameter. You pass a request. as your route don't have any parameter localhost/blog/post?id=2. So, you can access the id by request and that's why i updated your controller code. Just try it.
– Md.Sukel Ali
Jan 2 at 5:38
1
1
It was a silly mistake. I had a two references to
post
route in my view. I was unaware of the first reference which was called without passing the parameter. That was causing the problem.– Xitish
Jan 2 at 5:52
It was a silly mistake. I had a two references to
post
route in my view. I was unaware of the first reference which was called without passing the parameter. That was causing the problem.– Xitish
Jan 2 at 5:52
|
show 5 more comments
To view your post, you don't need to use a route in your anchor tag. Try this:
<a href="/blog/post{{ $post->id }}" class="btn btn-primary">Read More </a>
Laravel will automaticlly pickup the ID if you have set up your controller correctly.
add a comment |
To view your post, you don't need to use a route in your anchor tag. Try this:
<a href="/blog/post{{ $post->id }}" class="btn btn-primary">Read More </a>
Laravel will automaticlly pickup the ID if you have set up your controller correctly.
add a comment |
To view your post, you don't need to use a route in your anchor tag. Try this:
<a href="/blog/post{{ $post->id }}" class="btn btn-primary">Read More </a>
Laravel will automaticlly pickup the ID if you have set up your controller correctly.
To view your post, you don't need to use a route in your anchor tag. Try this:
<a href="/blog/post{{ $post->id }}" class="btn btn-primary">Read More </a>
Laravel will automaticlly pickup the ID if you have set up your controller correctly.
answered Jan 1 at 18:28
Tobias BarsnesTobias Barsnes
89211
89211
add a comment |
add a comment |
define your route in this form :
Route::get('blog/post/{id}', 'PostController@getPost')->name('post');
add a comment |
define your route in this form :
Route::get('blog/post/{id}', 'PostController@getPost')->name('post');
add a comment |
define your route in this form :
Route::get('blog/post/{id}', 'PostController@getPost')->name('post');
define your route in this form :
Route::get('blog/post/{id}', 'PostController@getPost')->name('post');
answered Jan 1 at 21:33


behnambehnam
1717
1717
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53997046%2fpassing-parameters-to-route-missing-required-parameters-for-route-post-erro%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
is post route under a route group ? if is can you add parent route group ?
– Teoman Tıngır
Jan 1 at 17:23
Hei, if you inspect the a element how does the link look?
– Răducanu Ionuţ
Jan 1 at 17:26
@Teoman The post route is not under any route group.
– Xitish
Jan 2 at 5:25
@Răducanu I have already stated that in the question. With the route like
Route::get('blog/post/{id}', ....
I get the error and laravel error page is displayed. (So I can't find how link looks). But if I remove{id}
fron route and make it likeRoute::get('blog/post/', ....
, the link looks likehttp://localhost/blog/post?id=2
– Xitish
Jan 2 at 5:28
@Xitish if you still wish to debug this you could set it optional param with ? ( {id?} ) and see the generated url.
– Răducanu Ionuţ
Jan 3 at 10:55