From 270a07bb77a674e86b9f8542fe07236415ba78ba Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Sun, 9 Nov 2025 17:50:46 -0300 Subject: [PATCH] Edit reservations --- .../views/ventas/reservations.blade.php | 2 + .../ventas/reservations/modal/edit.blade.php | 289 ++++++++++++++++++ 2 files changed, 291 insertions(+) create mode 100644 app/resources/views/ventas/reservations/modal/edit.blade.php diff --git a/app/resources/views/ventas/reservations.blade.php b/app/resources/views/ventas/reservations.blade.php index 007c456..7048c79 100644 --- a/app/resources/views/ventas/reservations.blade.php +++ b/app/resources/views/ventas/reservations.blade.php @@ -102,6 +102,7 @@ @include('ventas.reservations.modal.add') + @include('ventas.reservations.modal.edit') @include('ventas.reservations.modal.comment') @endsection @@ -793,6 +794,7 @@ this.show.projects() this.components.modals.add = new AddReservationModal(configuration.ids.projects) + this.components.modals.edit = new EditReservationModal() this.components.modals.comment = new CommentModal() const project_id = {{ $project_id ?? 'null' }}; diff --git a/app/resources/views/ventas/reservations/modal/edit.blade.php b/app/resources/views/ventas/reservations/modal/edit.blade.php new file mode 100644 index 0000000..4caf26d --- /dev/null +++ b/app/resources/views/ventas/reservations/modal/edit.blade.php @@ -0,0 +1,289 @@ + + + +@push('page_scripts') + +@endpush