@extends('layouts.app') @section('title', 'Presupuestos') @section('content')
| Nombre | Categoría | Tipo | Período | Monto Total | Estado | Creado | Acciones |
|---|---|---|---|---|---|---|---|
| {{ $budget->name }} | {{ $budget->category->name ?? 'N/A' }} | {{ ucfirst($budget->budget_type) }} | {{ \Carbon\Carbon::parse($budget->start_date)->format('d/m/Y') }} - {{ \Carbon\Carbon::parse($budget->end_date)->format('d/m/Y') }} | {{ number_format($budget->total_amount, 2) }} {{ $budget->currency }} | {{ ucfirst($budget->status) }} | {{ $budget->created_at->format('d/m/Y H:i') }} |