@extends('layouts.influencer', ['title' => 'Histórico de pagamentos']) @section('content')
@foreach($payments as $payment) @endforeach
DataValorStatusReferênciaObservação
{{ $payment->paid_at?->format('d/m/Y H:i') }}R$ {{ number_format((float)$payment->amount,2,',','.') }}{{ $payment->status->label() }}{{ $payment->reference }}{{ $payment->notes }}
{{ $payments->links() }}
@endsection