1234567891011121314151617181920212223242526272829303132333435 |
- @extends('admin/site/side_layout')
- @section('header_extend')
- <style>
- .tabs-container .tab-content .lists {
- height: 0;
- overflow: hidden;
- }
- .tabs-container .tab-content .lists.active {
- height: auto;
- }
- </style>
- @endsection
- @section('right')
- <div class="panel panel-info">
- <div class="panel-heading">
- <i class="fa fa-info-circle"></i>提示信息
- </div>
- <div class="panel-body">
- @php $tips=is_array($tips)?$tips:[$tips] @endphp
- @foreach($tips as $tip)
- <p>{{$tip}}</p>
- @endforeach
- </div>
- </div>
- @endsection
|