reports view alignment updated

This commit is contained in:
batuhanbas
2020-01-28 15:51:36 +03:00
parent e6577b00f1
commit 7136f597d8
11 changed files with 52 additions and 15 deletions

View File

@@ -2,12 +2,12 @@
@section('new_button')
<span>
<a href="{{ url($class->getUrl('print')) }}" target="_blank" class="btn btn-white header-button-top btn-sm">
<a href="{{ url($class->getUrl('print')) }}" target="_blank" class="btn btn-white btn-sm header-button-top">
<span class="fa fa-print"></span> &nbsp;{{ trans('general.print') }}
</a>
</span>
<span>
<a href="{{ url($class->getUrl('export')) }}" class="btn btn-white header-button-top btn-sm">
<a href="{{ url($class->getUrl('export')) }}" class="btn btn-white btn-sm header-button-top">
<span class="fa fa-upload"></span> &nbsp;{{ trans('general.export') }}
</a>
</span>

View File

@@ -1,5 +1,5 @@
<div class="table-responsive overflow-auto mt-4">
<table class="table align-items-center rp-border-collapse">
<div class="table-responsive overflow-auto">
<table class="table table-hover align-items-center rp-border-collapse">
@include($class->views['table.header'])
<tbody>
@if (!empty($class->row_values[$table]))

View File

@@ -1,6 +1,6 @@
<tfoot>
<tr class="rp-border-top-1">
<th class="report-column text-left">{{ trans_choice('general.totals', 1) }}</th>
<th class="report-column text-left text-uppercase">{{ trans_choice('general.totals', 1) }}</th>
@php $grand_total = 0; @endphp
@foreach($class->footer_totals[$table] as $total)
@php $grand_total += $total; @endphp