@extends('admin.layouts.netgescon') @section('title', 'Dettaglio Operazione GESCON') @section('content')

{{ $pageTitle }}

{{ $pageSubtitle }}

Informazioni Principali

{{ $operazione->id_operazione_gescon ?? '-' }}

{{ $operazione->data_spesa ? \Carbon\Carbon::parse($operazione->data_spesa)->format('d/m/Y') : '-' }}

{{ $operazione->cod_spe ?? '-' }}

{{ $operazione->natura ?? '-' }}

{{ $operazione->anno_gestione ?? '-' }}

@if($operazione->importo_euro > 0) +€{{ number_format($operazione->importo_euro, 2) }} @elseif($operazione->importo_euro < 0) -€{{ number_format(abs($operazione->importo_euro), 2) }} @else €0,00 @endif
@if($operazione->importo_lire)

{{ number_format($operazione->importo_lire, 0) }} ₤

@endif

{{ $operazione->cod_for ?? '-' }}

{{ $operazione->descrizione_spesa ?? '-' }}

@if($operazione->ragione_sociale_fornitore)

{{ $operazione->ragione_sociale_fornitore }}

@endif @if($operazione->beneficiario)

{{ $operazione->beneficiario }}

@endif @if($operazione->note)

{{ $operazione->note }}

@endif

Dati Fattura

{{ $operazione->numero_fattura ?? '-' }}

{{ $operazione->data_fattura ? \Carbon\Carbon::parse($operazione->data_fattura)->format('d/m/Y') : '-' }}

{{ $operazione->data_scadenza ? \Carbon\Carbon::parse($operazione->data_scadenza)->format('d/m/Y') : '-' }}

Dati Tecnici

{{ $operazione->id }}

{{ $operazione->created_at ? \Carbon\Carbon::parse($operazione->created_at)->format('d/m/Y H:i') : '-' }}

@if($operazione->updated_at && $operazione->updated_at !== $operazione->created_at)

{{ $operazione->updated_at ? \Carbon\Carbon::parse($operazione->updated_at)->format('d/m/Y H:i') : '-' }}

@endif

Azioni Rapide

@endsection