close #651 Fixed: Invoice/Bill create page, if you add new tax. it missing tax type column

This commit is contained in:
cuneytsenturk
2018-11-29 11:47:20 +03:00
parent 3fac930d80
commit 1d63b2d85a
7 changed files with 26 additions and 4 deletions

View File

@ -74,7 +74,7 @@
@foreach($module->screenshots as $screenshot)
@php if (empty($status)) { $status = 5; } else { $status = 1; } @endphp
<div class="item @if($status == 5) {{ 'active' }} @endif">
<a data-toggle="lightbox" href="{{ $screenshot->path_string }}" data-gallery="{{ $module->slug}}">
<a href="{{ $screenshot->path_string }}" data-toggle="lightbox" data-gallery="{{ $module->slug}}">
<img class="img-fluid d-block w-100" src="{{ $screenshot->path_string }}" alt="{{ $screenshot->alt_attribute }}">
</a>
@ -86,11 +86,11 @@
<div class="carousel-navigation-message">
@if (($item->module && (count($module->screenshots) > 1)) || (!$item->module && (count($module->screenshots) > 1)))
<a class="left carousel-control" href="#carousel-screenshot-generic" role="button" data-slide="prev">
<a href="#carousel-screenshot-generic" class="left carousel-control" role="button" data-slide="prev">
<i class="fa fa-chevron-left"></i>
<span class="sr-only">{{ trans('pagination.previous') }}</span>
</a>
<a class="right carousel-control" href="#carousel-screenshot-generic" role="button" data-slide="next">
<a href="#carousel-screenshot-generic" class="right carousel-control" role="button" data-slide="next">
<i class="fa fa-chevron-right"></i>
<span class="sr-only">{{ trans('pagination.next') }}</span>
</a>