@extends('theme::layout.public') @section('seo_title')账号绑定 - {{ Setting()->get('website_name') }}@endsection @section('content')
@include('theme::layout.profile_menu')

账号绑定

    @if(Auth()->user()->isOauthBind('weixinweb'))
  • 微信
  • @endif @if(Auth()->user()->isOauthBind('weixin'))
  • 微信公众号
  • @endif @if(Auth()->user()->isOauthBind('qq'))
  • 腾讯 QQ
  • @endif @if(Auth()->user()->isOauthBind('weibo'))
  • 新浪微博
  • @endif
    @if(config('services.weixinweb.open') && !Auth()->user()->isOauthBind('weixinweb'))
  • 微信
  • @endif @if(config('services.weixin.open') && !Auth()->user()->isOauthBind('weixin'))
  • 微信公众号登陆
  • @endif @if(config('services.qq.open') && !Auth()->user()->isOauthBind('qq'))
  • 腾讯QQ
  • @endif @if(config('services.weibo.open') && !Auth()->user()->isOauthBind('weibo'))
  • 新浪微博
  • @endif
@endsection