@extends('accounting::layouts.app') @section('title') {{ trans_choice('accounting::general.accounting', 1) }} {{ trans_choice('accounting::lang.report', 2) }} @endsection @section('content') @include('accounting::layouts.nav') @component('accounting::components.section_header') @slot('title') {{ trans_choice('accounting::general.accounting', 1) }} {{ trans_choice('accounting::lang.report', 2) }} @endslot @endcomponent
@foreach ($reports as $report) @component('accounting::components.box') @slot('title') {{ $report->section_title }} @endslot @slot('body')
@foreach ($report->items as $item)

{{ $item->title }}

{{ $item->description }}
@endforeach
@endslot @endcomponent @endforeach
@stop @section('javascript') @endsection