Base
This commit is contained in:
14
resources/views/ventas/precios/proyectos.blade.php
Normal file
14
resources/views/ventas/precios/proyectos.blade.php
Normal 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
|
Reference in New Issue
Block a user