在livewire中如何通过其名称使用路由?

时间:2020-08-13 06:43:20

标签: laravel-routing laravel-livewire

在我的laravel 7 / livewire 1.3 / turbolinks:5 / alpine @ v2应用中,我定义了路由

Route::livewire('/hostel/{slug}', 'hostel.hostel-view-page')->name('hostel-view-page');

当我使用它时:

<a href="{{ route('hostel-view-page', $hostelsIsHomepageSpotlight->slug)  }}" >
    Title
</a>

它不能作为反应式工作,因为所有页面都已重新加载。我更喜欢为这条路线命名,而不是:

<a href="/hostel/{{ $hostelsIsHomepageSpotlight->slug }}" >
    Title
</a>

哪种方法有效?

谢谢!

1 个答案:

答案 0 :(得分:1)

尝试一下,对我来说很好:

Route::group(['prefix' => 'admin',
        'as' => 'admin.',
        'middleware' => 'your:middleware',
], function () {
    Route::livewire('your-url-here', 'your-livewire-class-here')
    ->name('whatever.you.want');
});