Customer partial some fixes.
This commit is contained in:
parent
f894e15451
commit
966deefc29
@ -19,16 +19,15 @@
|
|||||||
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-green-light.min.css') }}">
|
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-green-light.min.css') }}">
|
||||||
@else
|
@else
|
||||||
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-black.min.css') }}">
|
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-black.min.css') }}">
|
||||||
<link rel="stylesheet" href="{{ asset('public/css/skin-black.css') }}">
|
<link rel="stylesheet" href="{{ asset('public/css/skin-black.css?v=1.0') }}">
|
||||||
@endif
|
@endif
|
||||||
<!-- Data Tables -->
|
<!-- Data Tables -->
|
||||||
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/datatables/dataTables.bootstrap.css') }}">
|
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/datatables/dataTables.bootstrap.css') }}">
|
||||||
<!-- App style -->
|
|
||||||
<link rel="stylesheet" href="{{ asset('public/css/app.css') }}">
|
|
||||||
<link rel="stylesheet" href="{{ asset('public/css/akaunting-green.css') }}">
|
|
||||||
|
|
||||||
<!-- Select2 -->
|
<!-- Select2 -->
|
||||||
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.css') }}">
|
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.css') }}">
|
||||||
|
<!-- App style -->
|
||||||
|
<link rel="stylesheet" href="{{ asset('public/css/app.css?v=1.0') }}">
|
||||||
|
<link rel="stylesheet" href="{{ asset('public/css/akaunting-green.css?v=1.0') }}">
|
||||||
|
|
||||||
<link rel="shortcut icon" href="{{ asset('public/img/favicon.ico') }}">
|
<link rel="shortcut icon" href="{{ asset('public/img/favicon.ico') }}">
|
||||||
|
|
||||||
@ -60,7 +59,7 @@
|
|||||||
<!-- Select2 -->
|
<!-- Select2 -->
|
||||||
<script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.js') }}"></script>
|
<script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/select2/select2.min.js') }}"></script>
|
||||||
|
|
||||||
<script src="{{ asset('public/js/app.js') }}"></script>
|
<script src="{{ asset('public/js/app.js?v=1.0') }}"></script>
|
||||||
|
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
var url_search = '{{ url("search/search/search") }}';
|
var url_search = '{{ url("search/search/search") }}';
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
@endif
|
@endif
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li class="header">{{ trans_choice('header.notifications.counter', count($notifications), ['count' => count($notifications)]) }}</li>
|
<li class="header">{{ trans_choice('header.notifications.counter', $notifications, ['count' => $notifications]) }}</li>
|
||||||
<li>
|
<li>
|
||||||
<!-- inner menu: contains the actual data -->
|
<!-- inner menu: contains the actual data -->
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
|
@ -1,17 +1,6 @@
|
|||||||
<aside class="main-sidebar">
|
<aside class="main-sidebar">
|
||||||
<!-- sidebar: style can be found in sidebar.less -->
|
<!-- sidebar: style can be found in sidebar.less -->
|
||||||
<section class="sidebar">
|
<section class="sidebar">
|
||||||
<!-- Sidebar user panel -->
|
|
||||||
<div class="user-panel">
|
|
||||||
@if ($customer->picture)
|
|
||||||
<div class="pull-left image">
|
|
||||||
<img src="{{ Storage::url($customer->picture) }}" class="img-circle" alt="{{ $customer->name }}">
|
|
||||||
</div>
|
|
||||||
@endif
|
|
||||||
<div class="pull-left info">
|
|
||||||
<p>{{ $customer->name }}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- sidebar menu: : style can be found in sidebar.less -->
|
<!-- sidebar menu: : style can be found in sidebar.less -->
|
||||||
{!! Menu::get('CustomerMenu') !!}
|
{!! Menu::get('CustomerMenu') !!}
|
||||||
</section>
|
</section>
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
|
@if ($items->firstItem())
|
||||||
<div class="pull-left" style="margin-top: 7px;">
|
<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>
|
<small>{{ trans('pagination.showing', ['first' => $items->firstItem(), 'last' => $items->lastItem(), 'total' => $items->total(), 'type' => strtolower(trans_choice('general.' . $type, 2))]) }}</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
{!! $items->appends(request()->except('page'))->links() !!}
|
{!! $items->appends(request()->except('page'))->links() !!}
|
||||||
</div>
|
</div>
|
||||||
|
@else
|
||||||
|
<div class="pull-left">
|
||||||
|
<small>{{ trans('general.no_records') }}</small>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user