Blame view

resources/views/reports/tax_summary/print.blade.php 504 Bytes
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  @extends('layouts.print')
  
  @section('title', trans('reports.summary.tax'))
  
  @section('content')
      <div class="box-header">
          <h2>{{ trans('reports.summary.tax') }}</h2>
          <div class="text-muted">
              {{ setting('general.company_name') }}
              <br/>
              {{ Date::parse(request('year') . '-1-1')->format($date_format) }} - {{ Date::parse(request('year') . '-12-31')->format($date_format) }}
          </div>
      </div>
      @include('reports.tax_summary.body')
  @endsection