在服务提供商中使用路由模型绑定

时间:2017-01-30 14:43:57

标签: php laravel

我将模型绑定到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();
    });
}

如何在我的服务提供商中访问已解析的网页模型?

0 个答案:

没有答案