This commit is contained in:
2022-06-13 21:36:11 -04:00
parent d7d671fb51
commit 119cdd2b95
16 changed files with 628 additions and 156 deletions

View File

@ -7,12 +7,29 @@
<div class="row">
<div class="col-md-12">
<table class="table table-striped">
@foreach ($proyectos as $proyecto)
<tr>
<td><a href="{{url('', ['p' => 'ventas', 'a' => 'list', 'proyecto' => $proyecto->id])}}">{{$proyecto->descripcion}}</a></td>
</tr>
@endforeach
<tbody id="proyectos"></tbody>
</table>
</div>
</div>
@endsection
@endsection
@push('scripts')
<script type="text/javascript">
$(document).ready(() => {
sendGet('/proyectos').then(response => {
response.proyectos.forEach(proyecto => {
if (!proyecto.ventas) {
return
}
$('#proyectos').append(
$('<tr></tr>').append(
$('<td></td>').append(
$('<a></a>').attr('href', '{{$urls->base}}/ventas/' + proyecto.id).html(proyecto.descripcion + ' (' + proyecto.ventas + ')')
)
)
)
})
})
})
</script>
@endpush