@extends('layouts.app') @section('title', $customer->name . ' - Sistema de Gestão') @section('page-title', 'Detalhes do Cliente') @section('content')
| Data | Descrição | Categoria | Débito | Crédito |
|---|---|---|---|---|
| {{ $entry->entry_date->format('d/m/Y') }} |
{{ $entry->description }}
@if($entry->notes)
{{ $entry->notes }} @endif |
@if($entry->category) {{ $entry->category->name }} @else - @endif | @if($entry->type === 'debit') R$ {{ number_format($entry->amount, 2, ',', '.') }} @endif | @if($entry->type === 'credit') R$ {{ number_format($entry->amount, 2, ',', '.') }} @endif |
Adicione o primeiro lançamento para este cliente.