diff --git a/app/resources/routes/ventas/cierres.php b/app/resources/routes/ventas/cierres.php index 62e3084..bf57def 100644 --- a/app/resources/routes/ventas/cierres.php +++ b/app/resources/routes/ventas/cierres.php @@ -1,5 +1,6 @@ group('/cierres', function($app) { $app->get('[/]', Cierres::class); diff --git a/app/resources/views/ventas/reservations.blade.php b/app/resources/views/ventas/reservations.blade.php new file mode 100644 index 0000000..12801f9 --- /dev/null +++ b/app/resources/views/ventas/reservations.blade.php @@ -0,0 +1,287 @@ +@extends('layout.base') + +@section('page_title') + Cierres -Reservas +@endsection + +@section('page_content') +
+

Cierres - Reservas

+ +
+
Proyectos
+ @if (count($projects) == 0) +
+ No hay proyectos en venta. +
+ @else + + @endif +
+

+
+
+ + +
+
+ + + + + + + + + + + + + +
UnidadesClienteFechaOferta¿Valida?Operador + +
+
+@endsection + +@push('page_styles') + +@endpush + +@push('page_scripts') + +@endpush diff --git a/app/src/Controller/Ventas/Reservations.php b/app/src/Controller/Ventas/Reservations.php new file mode 100644 index 0000000..d8bd8df --- /dev/null +++ b/app/src/Controller/Ventas/Reservations.php @@ -0,0 +1,22 @@ +getVendibles('descripcion'); + } catch (EmptyResult) {} + return $view->render($response, 'ventas.reservations', compact('projects')); + } +}