| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>角色 | Yunshop</title>
- <!-- Tell the browser to be responsive to screen width -->
- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
- <!-- Bootstrap 3.3.6 -->
- <link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
- <!-- Font Awesome -->
- <link rel="stylesheet" href="/libs/font-awesome/4.5.0/css/font-awesome.min.css">
- <!-- Ionicons -->
- <link rel="stylesheet" href="/libs/ionicons/2.0.1/css/ionicons.min.css">
- <!-- Theme style -->
- <link rel="stylesheet" href="/dist/css/AdminLTE.min.css">
- <!-- iCheck -->
- <link rel="stylesheet" href="/plugins/iCheck/square/blue.css">
- <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
- <!--[if lt IE 9]>
- <script src="/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
- <script src="/libs/respond/1.4.2/respond.min.js"></script>
- <![endif]-->
- </head>
- <body class="hold-transition login-page">
- <div class="main animsition">
- <div class="row">
- <div class="col-xs-12">
- <div class="box">
- <div class="box-body">
- <table id="tags-table" class="table table-bordered table-hover">
- <thead>
- <tr>
- <th class="hidden-sm">角色名称</th>
- <th class="hidden-sm">角色描述</th>
- <th class="hidden-md">角色创建日期</th>
- <th class="hidden-md">角色修改日期</th>
- <th data-sortable="false">操作</th>
- </tr>
- </thead>
- <tbody>
- @foreach ($data as $key => $r)
- <tr>
- <td>{{$r->name}}</td><td>{{$r->description}}</td><td>{{$r->created_at}}</td><td>{{$r->updated_at}}</td><td></td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- /.login-box -->
- <!-- jQuery 2.2.0 -->
- <script src="/plugins/jQuery/jQuery-2.2.0.min.js"></script>
- <!-- Bootstrap 3.3.6 -->
- <script src="/bootstrap/js/bootstrap.min.js"></script>
- <!-- iCheck -->
- <script src="/plugins/iCheck/icheck.min.js"></script>
- <script>
- $(function () {
- $('input').iCheck({
- checkboxClass: 'icheckbox_square-blue',
- radioClass: 'iradio_square-blue',
- increaseArea: '20%' // optional
- });
- });
- </script>
- </body>
- </html>
|