@extends('layouts.app') @php $cur = auth()->user()->company->currency ?? 'PEN'; @endphp @section('title', 'Gastos') @section('hi', 'Gastos') @section('hi_sub', 'Finanzas') @section('content')
Registro de egresos del negocio.
| Fecha | Categoría | Nota | Registró | Monto | |
|---|---|---|---|---|---|
| {{ $e->spent_on->format('d/m/Y') }} | {{ $e->category }} | {{ $e->note ?: '—' }} | {{ $e->user->name ?? '—' }} | {{ $cur }} {{ number_format($e->amount, 2) }} | |
@if(auth()->user()->company_id) No hay gastos registrados. @else Ingresa como usuario de una empresa para registrar gastos. @endif
| |||||