如何在 laravel post 中自定义 url/slug

我试图让我的网站 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 之前?


哔哔one
浏览 102回答 1
1回答

RISEBY

问题出在 welcome.blade.php 中,你应该将所有必需的参数传递给路由:<a&nbsp;href="{{&nbsp;route('posts.show',['category'&nbsp;=>&nbsp;CATEGORY,&nbsp;'post'&nbsp;=>&nbsp;POST])&nbsp;}}">{{$properties->title}}</a>使用您的值更改 CATEGORY 和 POST
打开App,查看更多内容
随时随地看视频慕课网APP