{{-- Conditional views --}}
@switch(Request::get('view'))
@case('monthly')
@include(
'accounting::report.budget.partials.monthly_view'
)
@break
@case('quarterly')
@include(
'accounting::report.budget.partials.quarterly_view'
)
@break
@default
{{ trans('accounting::lang.an_error_occurred') }}
@endswitch