Skip to content

Instantly share code, notes, and snippets.

@luisalonsobr
Created October 14, 2021 21:59
Show Gist options
  • Save luisalonsobr/d10c6b216ac8c5d6f62bc7196bfc233d to your computer and use it in GitHub Desktop.
Save luisalonsobr/d10c6b216ac8c5d6f62bc7196bfc233d to your computer and use it in GitHub Desktop.
Laravel snippets
/// GET ROUTE SUB DOMAIN
Request::macro('subdomain', function () {
return current(explode('.', $this->getHost()));
});
$request->subdomain()
///////
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment