this is my url
http://project.dev/blogs/image-with-article
so, here I need the parameter image-with-article
in my blade to display which is a parameter named slug here is in my routes file I need the slug paramter in blade.
Route::get('/blogs/{slug}', ['as'=>'blog.by.slug', 'uses'=> 'CmsController@show']);
I'm not sure what you mean. If you're trying to construct the route in a Blade template, use
<a href="{{ route('blog.by.slug', ['slug' => 'someslug']) }}">...</a>
If you're trying to access the given parameter, I would suggest passing it from the controller:
// CmsController
public function show($slug)
{
// other stuff here
return view('someview', compact('slug'));
}
// someview.blade.php
{{ $slug }}
And if you really need to access the parameter from the view without first sending it from the controller... you really shouldn't, but you can use the facade:
{{ Request::route('slug') }}