aggiornato lista dei movimenti e inserito come test il fullcalendar

This commit is contained in:
2023-10-04 13:41:10 +02:00
parent 21cc195ce4
commit 67775716b8
13 changed files with 99 additions and 25 deletions

View File

@@ -1,10 +1,12 @@
@extends('admin')
@extends('adminlte::page')
@section('content_header')
<h1>Lista Documenti</h1>
@endsection
@section('content')
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Lista Documenti</h1>
</div>
</div>
<div class="container">
<!-- Content here -->
<div class="row">
@@ -48,7 +50,7 @@
<tbody>
@foreach($documenti as $documento)
<tr>
<td><a href="/storage/{{ $documento->filename }}">{{ $documento->descrizione; }}</a></td>
<td><a href="/storage/{{ $documento->filename; }}">{{ $documento->descrizione; }}</a></td>
<td>
<a class="btn btn-primary" href="/admin/doc_update?id={{ $documento->id; }}"><i class="fa fa-pencil-square-o fw"></i></a>&nbsp;
<a class="btn btn-danger" href="/admin/doc_delete?id={{ $documento->id; }}"><i class="fa fa-trash-o fa-fw"></i></a>&nbsp;