@livewire('components.customer-profile', ['id' => $customer_id])
{{ __('main.date') }} {{ __('main.amount') }} {{ __('main.actions') }}
@foreach ($discounts as $row) @endforeach
{{ \Carbon\Carbon::parse($row->date)->format('d/m/Y') }}
{{ __('main.by') }} {{ $row->createdBy->name ?? '' }}
{{ getFormattedCurrency($row->amount) }}
{{ __('main.edit') }} {{ __('main.delete') }}
@if ($hasMorePages)
Loading...
Loading...
@endif
@livewire('components.customer-discount', ['id' => $customer_id])