@extends('adminlte::page')
@section('title', 'Dashboard')
@section('content_header')
Modifica documenti
@include('layouts.navbar')
@include('layouts.breadcrumb')
@stop
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| Nome file |
Data caricamento |
Azioni |
@foreach($commessa->documenti as $documento)
| {{ basename($documento->path) }} |
{{ $documento->created_at->format('d/m/Y H:i') }} |
Scarica
|
@endforeach
@endsection
@section('js')
@stop