我将模型绑定到RouteServiceProvider.php
中的路由参数,如下所示:
Route::bind('page', function ($page) {
return Page::whereSlug($page)->first();
});
在config/app.php
中,我添加了另一个服务提供商,其中包含以下内容(在RouterServiceProvider之后):
App\Providers\ContentServiceProvider::class
public function boot()
{
$this->app->singleton(ContentProvider::class, function() {
// Route::current()->parameters();
});
}
如何在我的服务提供商中访问已解析的网页模型?