{{-- Extends layout --}}
@extends('layout.app_private')
{{-- Content --}}
@section('content')
@if ($data["report_version"] === 1)
@include('pages.'.$data["name"].'.report.content_legacy')
@else
@include('pages.'.$data["name"].'.report.content')
@include('pages.'.$data["name"].'.report.modal_generate_pdf')
@include('pages.'.$data["name"].'.report.modal_info')
@endif
@endsection
{{-- Styles Section --}}
@section('styles')
@endsection
{{-- Scripts Section --}}
@section('scripts')
@if ($data["report_version"] === 1)
@else
@endif
@endsection