Files
ui/resources/views/ventas/precios/proyectos.blade.php
2022-06-13 21:36:11 -04:00

29 lines
667 B
PHP

@extends('layout.base')
@section('content')
<div class="page-heading">
<h3>Precios</h3>
</div>
<table class="table">
<tbody id="proyectos"></tbody>
</table>
@endsection
@push('scripts')
<script type="text/javascript">
$(document).ready(() => {
sendGet('/proyectos').then(response => {
response.proyectos.forEach(el => {
$('#proyectos').append(
$('<tr></tr>').append(
$('<td></td>').append(
$('<a></a>').attr('href', '{{$urls->base}}/proyecto/' + el.id + '/precios').html(el.descripcion)
)
)
)
})
})
})
</script>
@endpush