29 lines
667 B
PHP
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
|