| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <!DOCTYPE html>
- <!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
- <!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
- <!--[if !IE]><!-->
- <html lang="{{app()->getLocale()}}">
- <!--<![endif]-->
- <head>
- <meta charset="utf-8" />
- <title>@yield('title')</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta content="width=device-width, initial-scale=1" name="viewport" />
- <meta content="" name="description" />
- <meta content="" name="author" />
- <!-- BEGIN GLOBAL MANDATORY STYLES -->
- <link href="/assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
- <link href="/assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css" />
- <link href="/assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
- <link href="/assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css" />
- <!-- END GLOBAL MANDATORY STYLES -->
- <!-- BEGIN PAGE LEVEL PLUGINS -->
- @yield('css')
- <!-- END PAGE LEVEL PLUGINS -->
- <!-- BEGIN THEME GLOBAL STYLES -->
- <link href="/assets/global/css/components-rounded.min.css" rel="stylesheet" id="style_components" type="text/css" />
- <link href="/assets/global/css/plugins.min.css" rel="stylesheet" type="text/css" />
- <!-- END THEME GLOBAL STYLES -->
- <!-- BEGIN THEME LAYOUT STYLES -->
- <link href="/assets/layouts/layout4/css/layout.min.css" rel="stylesheet" type="text/css" />
- <link href="/assets/layouts/layout4/css/themes/default.min.css" rel="stylesheet" type="text/css" id="style_color" />
- <link href="/assets/layouts/layout4/css/custom.min.css" rel="stylesheet" type="text/css" />
- <!-- END THEME LAYOUT STYLES -->
- <link rel="shortcut icon" href="favicon.ico" />
- </head>
- <body class="page-container-bg-solid page-header-fixed page-sidebar-closed-hide-logo">
- <!-- BEGIN HEADER -->
- <div class="page-header navbar navbar-fixed-top">
- <!-- BEGIN HEADER INNER -->
- <div class="page-header-inner ">
- <!-- BEGIN LOGO -->
- <div class="page-logo">
- <a href="{{url('/user')}}">
- <img src="/assets/images/logo.png" alt="logo" class="logo-default" /> </a>
- <div class="menu-toggler sidebar-toggler">
- <!-- DOC: Remove the above "hide" to enable the sidebar toggler button on header -->
- </div>
- </div>
- <!-- END LOGO -->
- <!-- BEGIN RESPONSIVE MENU TOGGLER -->
- <a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse"> </a>
- <!-- END RESPONSIVE MENU TOGGLER -->
- <!-- BEGIN PAGE TOP -->
- <div class="page-top">
- <!-- BEGIN TOP NAVIGATION MENU -->
- <div class="top-menu">
- <ul class="nav navbar-nav pull-right">
- <li class="separator hide"> </li>
- <!-- BEGIN USER LOGIN DROPDOWN -->
- <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
- <li class="dropdown dropdown-user dropdown-dark">
- <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
- <span class="username username-hide-on-mobile"> {{Session::get('user')['username']}} </span>
- <!-- DOC: Do not remove below empty space( ) as its purposely used -->
- <img alt="" class="img-circle" src="/assets/images/avatar.jpg" /> </a>
- <ul class="dropdown-menu dropdown-menu-default">
- <li>
- <a href="{{url('user/profile')}}"> <i class="icon-user"></i> 个人资料 </a>
- </li>
- <li>
- <a href="{{url('logout')}}"> <i class="icon-key"></i> 退出 </a>
- </li>
- </ul>
- </li>
- <!-- END USER LOGIN DROPDOWN -->
- </ul>
- </div>
- <!-- END TOP NAVIGATION MENU -->
- </div>
- <!-- END PAGE TOP -->
- </div>
- <!-- END HEADER INNER -->
- </div>
- <!-- END HEADER -->
- <!-- BEGIN HEADER & CONTENT DIVIDER -->
- <div class="clearfix"> </div>
- <!-- END HEADER & CONTENT DIVIDER -->
- <!-- BEGIN CONTAINER -->
- <div class="page-container">
- <!-- BEGIN SIDEBAR -->
- <div class="page-sidebar-wrapper">
- <!-- BEGIN SIDEBAR -->
- <!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
- <!-- DOC: Change data-auto-speed="200" to adjust the sub menu slide up/down speed -->
- <div class="page-sidebar navbar-collapse collapse">
- <!-- BEGIN SIDEBAR MENU -->
- <!-- DOC: Apply "page-sidebar-menu-light" class right after "page-sidebar-menu" to enable light sidebar menu style(without borders) -->
- <!-- DOC: Apply "page-sidebar-menu-hover-submenu" class right after "page-sidebar-menu" to enable hoverable(hover vs accordion) sub menu mode -->
- <!-- DOC: Apply "page-sidebar-menu-closed" class right after "page-sidebar-menu" to collapse("page-sidebar-closed" class must be applied to the body element) the sidebar sub menu mode -->
- <!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
- <!-- DOC: Set data-keep-expand="true" to keep the submenues expanded -->
- <!-- DOC: Set data-auto-speed="200" to adjust the sub menu slide up/down speed -->
- <ul class="page-sidebar-menu " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200">
- <li class="nav-item start {{Request::getRequestUri() == '/user' ? 'active open' : ''}}">
- <a href="{{url('user')}}" class="nav-link nav-toggle">
- <i class="icon-home"></i>
- <span class="title">首页</span>
- <span class="selected"></span>
- </a>
- </li>
- <li class="nav-item {{Request::getRequestUri() == '/user/nodeList' ? 'active open' : ''}}">
- <a href="{{url('user/nodeList')}}" class="nav-link nav-toggle">
- <i class="icon-list"></i>
- <span class="title">节点列表</span>
- </a>
- </li>
- <li class="nav-item {{Request::getRequestUri() == '/user/trafficLog' ? 'active open' : ''}}">
- <a href="{{url('user/trafficLog')}}" class="nav-link nav-toggle">
- <i class="icon-speedometer"></i>
- <span class="title">流量日志</span>
- </a>
- </li>
- <li class="nav-item {{Request::getRequestUri() == '/user/invite' ? 'active open' : ''}}">
- <a href="{{url('user/invite')}}" class="nav-link nav-toggle">
- <i class="icon-user-follow"></i>
- <span class="title">邀请码</span>
- </a>
- </li>
- <li class="nav-item {{in_array(Request::getRequestUri(), ['/user/goodsList', '/user/addOrder']) ? 'active open' : ''}}">
- <a href="{{url('user/goodsList')}}" class="nav-link nav-toggle">
- <i class="icon-basket"></i>
- <span class="title">流量包</span>
- </a>
- </li>
- <li class="nav-item {{in_array(Request::getRequestUri(), ['/user/orderList']) ? 'active open' : ''}}">
- <a href="{{url('user/orderList')}}" class="nav-link nav-toggle">
- <i class="icon-wallet"></i>
- <span class="title">消费记录</span>
- </a>
- </li>
- <li class="nav-item {{Request::getRequestUri() == '/user/ticketList' ? 'active open' : ''}}">
- <a href="{{url('user/ticketList')}}" class="nav-link nav-toggle">
- <i class="icon-question"></i>
- <span class="title">工单</span>
- </a>
- </li>
- <li class="nav-item {{Request::getRequestUri() == '/user/referral' ? 'active open' : ''}}">
- <a href="{{url('user/referral')}}" class="nav-link nav-toggle">
- <i class="icon-diamond"></i>
- <span class="title">推广返利</span>
- </a>
- </li>
- </ul>
- <!-- END SIDEBAR MENU -->
- </div>
- <!-- END SIDEBAR -->
- </div>
- <!-- END SIDEBAR -->
- <!-- BEGIN CONTENT -->
- <div class="page-content-wrapper">
- @yield('content')
- </div>
- <!-- END CONTENT -->
- </div>
- <!-- END CONTAINER -->
- <!-- BEGIN FOOTER -->
- <div class="page-footer">
- <div class="page-footer-inner"> 2017 © <a href="https://github.com/ssrpanel/ssrpanel" target="_blank">SSRPanel</a> </div>
- <div class="scroll-to-top">
- <i class="icon-arrow-up"></i>
- </div>
- </div>
- <!-- END FOOTER -->
- <!--[if lt IE 9]>
- <script src="/assets/global/plugins/respond.min.js"></script>
- <script src="/assets/global/plugins/excanvas.min.js"></script>
- <script src="/assets/global/plugins/ie8.fix.min.js"></script>
- <![endif]-->
- <!-- BEGIN CORE PLUGINS -->
- <script src="/assets/global/plugins/jquery.min.js" type="text/javascript"></script>
- <script src="/assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
- <script src="/assets/global/plugins/js.cookie.min.js" type="text/javascript"></script>
- <script src="/assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script>
- <script src="/assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script>
- <script src="/assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script>
- <!-- END CORE PLUGINS -->
- <!-- BEGIN PAGE LEVEL PLUGINS -->
- @yield('script')
- <!-- END PAGE LEVEL PLUGINS -->
- <!-- BEGIN THEME GLOBAL SCRIPTS -->
- <script src="/assets/global/scripts/app.min.js" type="text/javascript"></script>
- <!-- END THEME GLOBAL SCRIPTS -->
- <!-- BEGIN THEME LAYOUT SCRIPTS -->
- <script src="/assets/layouts/layout4/scripts/layout.min.js" type="text/javascript"></script>
- <!-- END THEME LAYOUT SCRIPTS -->
- </body>
- </html>
|