json( ['company_name' => auth()->user()->getCompany()->present()->name(), 'user_name' => auth()->user()->present()->name(), ], 200); } public function health() { if(Ninja::isNinja()) return response()->json(['message' => 'Route not available', 'errors'=>[]], 403); return response()->json(SystemHealth::check(),200); } }