{{-- Support Data --}} @php $totals_section = [ [ 'title' => __('reports')['hotel']['common']['lodging'], 'icon' => 'fas fa-bed', 'title_class' => 'text-primary', 'value_class' => 'text-primary', 'id' => 'lodging_total', 'display' => true ], [ 'title' => __('reports')['hotel']['common']['consumption'], 'icon' => 'fas fa-utensils', 'title_class' => 'text-success', 'value_class' => 'text-secondary', 'id' => 'consumption_total', 'border' => true, 'display' => true ], [ 'title' => __('reports')['hotel']['common']['extras'], 'icon' => 'fas fa-suitcase', 'title_class' => 'text-orange', 'value_class' => 'text-secondary', 'id' => 'extras_total', 'border' => $show_general_total, 'display' => true ], [ 'title' => 'Total', 'icon' => 'fas fa-calculator', 'title_class' => 'text-purple', 'value_class' => 'text-purple-dark', 'id' => 'final_total', 'display' => $show_general_total ], ]; $breakdown_sections = [ [ 'id' => 'lodging', 'title' => __('reports')['hotel']['common']['lodging'], 'color' => 'primary', ], [ 'id' => 'consumption', 'title' => __('reports')['hotel']['common']['consumption'], 'color' => 'success', ], [ 'id' => 'extra', 'title' => __('reports')['hotel']['common']['extras'], 'color' => 'orange', ] ]; @endphp {{-- Summary Table --}}
{{-- Header --}}
{{ $title_card }}
{{-- Incomes per Sections --}}
@foreach ($totals_section as $item) @if ($item['display'])
{{ $item['title'] }}
0.00
@endif @endforeach
{{-- Breakdown --}}
{{-- Scripts --}}