Skip to content

Instantly share code, notes, and snippets.

@jobcerto
Created May 24, 2018 02:35
Show Gist options
  • Save jobcerto/2a84539689cb0eb3b782e9faef28046c to your computer and use it in GitHub Desktop.
Save jobcerto/2a84539689cb0eb3b782e9faef28046c to your computer and use it in GitHub Desktop.
<?php
Route::domain('{customer}.multi-tenancy.job')->prefix('api/v1')->group(function () {
Route::get('users', function ($customer) {
return App\Customer\Models\User::all();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment