Customer partial some fixes.

This commit is contained in:
cuneytsenturk 2017-11-29 19:47:18 +03:00
parent f894e15451
commit 966deefc29
4 changed files with 19 additions and 25 deletions

View File

@ -19,16 +19,15 @@
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/dist/css/skins/skin-green-light.min.css') }}">
@else
<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
<!-- Data Tables -->
<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 -->
<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') }}">
@ -60,7 +59,7 @@
<!-- Select2 -->
<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"><!--
var url_search = '{{ url("search/search/search") }}';

View File

@ -27,7 +27,7 @@
@endif
</a>
<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>
<!-- inner menu: contains the actual data -->
<ul class="menu">

View File

@ -1,17 +1,6 @@
<aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less -->
<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 -->
{!! Menu::get('CustomerMenu') !!}
</section>

View File

@ -1,6 +1,12 @@
@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>
</div>
<div class="pull-right">
{!! $items->appends(request()->except('page'))->links() !!}
</div>
@else
<div class="pull-left">
<small>{{ trans('general.no_records') }}</small>
</div>
@endif