phpvms/resources/views/admin/sidebar.blade.php

21 lines
749 B
PHP
Raw Normal View History

2017-08-22 02:06:10 +08:00
<div class="sidebar" data-background-color="white" data-active-color="info">
2017-06-09 02:28:26 +08:00
2017-08-18 03:53:10 +08:00
<!--
2017-08-18 07:26:48 +08:00
Tip 1: you can change the color of the sidebar's background using: data-background-color="white | black"
Tip 2: you can change the color of the active button using the data-active-color="primary | info | success | warning | danger"
2017-08-18 03:53:10 +08:00
-->
2017-08-18 07:26:48 +08:00
2017-08-18 03:53:10 +08:00
<div class="sidebar-wrapper">
2017-08-22 02:41:59 +08:00
<div class="logo" style="background: #067ec1; margin: 0px; text-align: center; min-height: 74px;">
2017-11-30 08:01:07 +08:00
<a href="{!! url('/dashboard') !!}">
<img src="/assets/frontend/img/logo_blue_bg.svg" width="110px" style="">
</a>
2017-08-18 03:53:10 +08:00
</div>
2017-08-22 02:41:59 +08:00
<ul class="nav">
@include('admin.menu')
</ul>
2017-08-18 03:53:10 +08:00
</div>
</div>