for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MultiTenantLaravel\App\Http\Middleware;
use Closure;
class MultiTenantMiddleware
{
public function handle($request, Closure $next)
// Here we can perform an multi tenant required authentication
return $next($request);
}