Laravel dingo api group by multiple domains

403 Views Asked by At

Is it possible to group dingo api routes with multiple domains? For example

$api->group(['domain' => ['something.com', 'anotherexample.com]], function ($api) {

  // My routes

});
1

There are 1 best solutions below

0
On

You don't have to repeat code.

$callback = function() {};

Route::group(['domain' => 'foo.bar.dev'], $callback);
Route::group(['domain' => 'foo.bar'], $callback);

But we have one more micro solution

Route::macro("domain", function(array $domains, \Closure $definition) {
    foreach ($domains as $domain) {
        Route::group(['domain' => $domain], $definition);
    }
});
Route::domain(['foo.bar.dev', 'foo.bar'], function($route) {
    // Do stuff
});