added more stacks
This commit is contained in:
@@ -1,7 +1,13 @@
|
||||
@stack('content_start')
|
||||
|
||||
<!-- Content Wrapper. Contains page content -->
|
||||
<div class="content-wrapper">
|
||||
@stack('content_wrapper_start')
|
||||
|
||||
<!-- Content Header (Page header) -->
|
||||
<section class="content-header content-center">
|
||||
@stack('content_header_start')
|
||||
|
||||
<h1>
|
||||
@yield('title')
|
||||
@yield('new_button')
|
||||
@@ -13,18 +19,28 @@
|
||||
@endforeach
|
||||
@endif
|
||||
</h1>
|
||||
|
||||
@stack('content_header_end')
|
||||
</section>
|
||||
|
||||
<!-- Main content -->
|
||||
<section class="content content-center">
|
||||
@include('flash::message')
|
||||
|
||||
@stack('content_content_start')
|
||||
|
||||
@yield('content')
|
||||
|
||||
@stack('content_content_start')
|
||||
</section>
|
||||
<!-- /.content -->
|
||||
|
||||
@stack('content_wrapper_end')
|
||||
</div>
|
||||
<!-- /.content-wrapper -->
|
||||
|
||||
<script type="text/javascript">
|
||||
$('div.alert').not('.alert-important').delay(3000).fadeOut(350);
|
||||
</script>
|
||||
|
||||
@stack('content_end')
|
||||
@@ -1,6 +1,10 @@
|
||||
@stack('footer_start')
|
||||
|
||||
<footer class="main-footer">
|
||||
<div class="pull-right hidden-xs">
|
||||
<b>{{ trans('footer.version') }}</b> {{ version('short') }}
|
||||
</div>
|
||||
<strong>{{ trans('footer.powered') }}</strong>: <a href="https://akaunting.com" target="_blank">{{ trans('footer.software') }}</a>
|
||||
</footer>
|
||||
|
||||
@stack('footer_end')
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
<head>
|
||||
@stack('head_start')
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<!-- Tell the browser to be responsive to screen width -->
|
||||
@@ -63,4 +65,6 @@
|
||||
@stack('js')
|
||||
|
||||
@stack('scripts')
|
||||
|
||||
@stack('head_end')
|
||||
</head>
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
@stack('header_start')
|
||||
|
||||
<header class="main-header">
|
||||
<!-- Logo -->
|
||||
<a href="{{ url('/') }}" class="logo">
|
||||
@@ -18,10 +20,8 @@
|
||||
<!-- Sidebar toggle button-->
|
||||
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</a>
|
||||
|
||||
<ul class="add-new nav navbar-nav pull-left">
|
||||
<!-- Notifications: style can be found in dropdown.less -->
|
||||
<li class="dropdown add-new-menu">
|
||||
@@ -86,8 +86,12 @@
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@stack('header_navbar_left')
|
||||
|
||||
<div class="navbar-custom-menu">
|
||||
<ul class="nav navbar-nav">
|
||||
@stack('header_navbar_right')
|
||||
|
||||
@permission('read-notifications')
|
||||
<!-- Notifications: style can be found in dropdown.less -->
|
||||
<li class="dropdown notifications-menu">
|
||||
@@ -232,3 +236,5 @@
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
@stack('header_end')
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
@stack('menu_start')
|
||||
|
||||
<aside class="main-sidebar">
|
||||
<!-- sidebar: style can be found in sidebar.less -->
|
||||
<section class="sidebar">
|
||||
@@ -37,3 +39,5 @@
|
||||
</section>
|
||||
<!-- /.sidebar -->
|
||||
</aside>
|
||||
|
||||
@stack('menu_end')
|
||||
@@ -1,3 +1,5 @@
|
||||
@stack('pagination_start')
|
||||
|
||||
@if ($items->firstItem())
|
||||
<div class="pull-left" style="margin-top: 7px;">
|
||||
<small>{{ trans('pagination.showing', ['first' => $items->firstItem(), 'last' => $items->lastItem(), 'total' => $items->total(), 'type' => strtolower(trans_choice('general.' . $type, 2))]) }}</small>
|
||||
@@ -9,4 +11,6 @@
|
||||
<div class="pull-left">
|
||||
<small>{{ trans('general.no_records') }}</small>
|
||||
</div>
|
||||
@endif
|
||||
@endif
|
||||
|
||||
@stack('pagination_end')
|
||||
Reference in New Issue
Block a user