Blame view

resources/views/reports/tax_summary/body.blade.php 2.32 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  <div class="box-body">
      <div class="table-responsive">
          <table class="table">
              <thead>
                  <tr>
                      <th style="width: 120px;">&nbsp;</th>
                      @foreach($dates as $date)
                          <th class="text-right">{{ $date }}</th>
                      @endforeach
                  </tr>
              </thead>
          </table>
          @if ($taxes)
              @foreach($taxes as $tax_name)
              <table class="table table-hover" style="margin-top: 40px">
                  <thead>
                      <tr>
                          <th style="width: 120px;" colspan="13">{{ $tax_name }}</th>
                      </tr>
                  </thead>
                  <tbody>
                      <tr>
                          <td style="width: 120px;">{{ trans_choice('general.incomes', 2) }}</td>
                          @foreach($incomes[$tax_name] as $tax_date)
                              <td class="text-right">@money($tax_date['amount'], $tax_date['currency_code'], true)</td>
                          @endforeach
                      </tr>
                      <tr>
                          <td style="width: 120px;">{{ trans_choice('general.expenses', 2) }}</td>
                          @foreach($expenses[$tax_name] as $tax_date)
                              <td class="text-right">@money($tax_date['amount'], $tax_date['currency_code'], true)</td>
                          @endforeach
                      </tr>
                  </tbody>
                  <tfoot>
                      <tr>
                          <th style="width: 120px;">{{ trans('reports.net') }}</th>
                          @foreach($totals[$tax_name] as $tax_date)
                              <th class="text-right">@money($tax_date['amount'], $tax_date['currency_code'], true)</th>
                          @endforeach
                      </tr>
                  </tfoot>
              </table>
              @endforeach
          @else
              <table class="table table-bordered table-striped table-hover" style="margin-top: 40px">
                  <tbody>
                      <tr>
                          <td colspan="13">
                              <h5 class="text-center">{{ trans('general.no_records') }}</h5>
                          </td>
                      </tr>
                  </tbody>
              </table>
          @endif
      </div>
  </div>