Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Created April 30, 2017 17:13
Show Gist options
  • Save Mombuyish/8cb61ad752893649bc90afb86336779b to your computer and use it in GitHub Desktop.
Save Mombuyish/8cb61ad752893649bc90afb86336779b to your computer and use it in GitHub Desktop.
<?php
....
protected function mapApiRoutes()
{
Route::middleware('api')
//跟 laravel 說你要他是 subdomain, 也可以寫成 'api.' . env('APP_URL')
->domain('api.blog.dev')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment