Creato gestione documentale generica

This commit is contained in:
2023-10-19 14:19:33 +02:00
parent cae02dfebf
commit 0e777445e9
6 changed files with 32 additions and 21 deletions

View File

@@ -39,8 +39,8 @@
Lista dei documenti
</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover" id="categorie">
<div class="table-responsive" >
<table class="table table-striped table-bordered table-hover" id="listadoc">
<thead>
<tr>
<th>Descrizione</th>
@@ -68,6 +68,6 @@
<!-- /.col-lg-12 -->
@endsection
@section('script')
<script src="/js/app/conti_categorie.js"></script>
@section('js')
<script src="/js/app/listadoc.js"></script>
@endsection

View File

@@ -26,7 +26,7 @@
<tbody>
@foreach($data as $dato)
<tr>
<td>{{$dato->descrizione}}</td>
<td><a href="/admin/movimenti/docs?entity={{$dato->id}}">{{$dato->descrizione}}</a></td>
<td>{{$dato->path}}</td>
</tr>
@endforeach