我试图让我的网站 slug/url 像这样localhost:8000/apartment/example-post-cat-come而不是localhost:8000/example-post-cat-come
我有这样的类别 1. 公寓 2. 公寓
我想在 url 中的 slug 之前添加帖子类别
目前我正在做这个
Route::get('/{post}','ShowPropertiesController@index')->name('posts.show');
在尝试第一条路线后我也做了以下
Route::get('{category}/{post}','ShowPropertiesController@index')->name('posts.show');
并在我的控制器中执行此操作
public function index($category, $post)
{
// ...
}
我得到了这个错误Missing required parameters for [Route: posts.show] [URI: {category}/{post}]. (View: C:\MAMP\htdocs\laravel-real-estate\resources\views\pages\welcome.blade.php) 这是我的刀片
<a href="{{ route('posts.show',$properties->slug) }}">{{$properties->title}}</a>
我怎样才能让类别显示在 url 之前?
RISEBY