@extends('layouts.default-canvas')
@section('title')
{{ __('modules')['dashboard']['invoicing']['invoices'] }} | Editar Borrador #{{ $draft->id }}
@endsection
@section('styles')
{{-- Select2 --}}
{{-- Toastify --}}
@endsection
@section('content')
{{--* Control Variables *--}}
@php
// For Interactions
$is_mex_hotel = App\Helpers\Environment\SystemEnvHelper::isCurrentCountry('MEX');
// Visual Support
$required_field = " *";
$default_price = App\Helpers\Formats\FormatCurrencyHelper::formatCurrency("0.00");
@endphp
{{--* Content *--}}
@endsection
@section('additional-components')
{{-- Modals --}}
@include('invoicing.invoices.components.receiver-form')
@include('invoicing.invoices.components.additional-doc-form')
@include('invoicing.invoices.components.concept-form')
@endsection
@section('footer')
@include('shared.components.footer.basic-footer')
@endsection
@section('import-scripts')
{{-- Sweet Alert --}}
{{-- Format Controls --}}
{{-- Select2 --}}
{{-- Toastify --}}
{{-- CryptoJS --}}
{{-- Certificate Validity --}}
@if ($is_mex_hotel)
@endif
@endsection
@section('page-control-scripts')
{{-- Specific Page Variables --}}
{{-- Scripts --}}
@include('invoicing.invoices.complements.page-control-scripts')
{{-- Seed data Onload --}}
@endsection
@section('interaction-scripts')
@include('invoicing.invoices.complements.interaction-scripts')
@endsection