Resources

This commit is contained in:
2021-03-25 21:20:49 -03:00
parent cdf3ce9c21
commit 15e1eecc76
213 changed files with 19218 additions and 0 deletions

View File

@ -0,0 +1,14 @@
@extends('layout.base')
@section('content')
<div class="page-heading">
<h3>Precios</h3>
</div>
<table class="table">
@foreach ($proyectos as $proyecto)
<tr>
<td><a href="{{nUrl('precios', 'list', ['proyecto' => $proyecto->id])}}">{{$proyecto->descripcion}}</a>
</tr>
@endforeach
</table>
@endsection