@extends('layouts.app')
@section('title')
Pontos
@endsection
@section('content')
Arquiteto | Pontos | Valor da Venda | Regra de Pontuação | Nome do Cliente | Loja | Data | Ação | ||
---|---|---|---|---|---|---|---|---|---|
{{ $point->architect->name }} | {{ number_format($point->points, 0, ',', '.') }} | {{ 'R$ ' . number_format($point->sale_value, 2, ',', '.') }} | {{ $point->scoring_rule_name }} | {{ $point->customer_name }} | {{ $point->store->name ?? 'N/A' }} | {{ $point->created_at->format('d/m/Y') }} | Editar | ||
Total | {{ number_format($totalPoints, 0, ',', '.') }} | {{ 'R$ ' . number_format($totalSaleValue, 2, ',', '.') }} |
Total de registros: {{ $points->total() }}
{{ $points->appends(request()->query())->links('pagination::bootstrap-4') }}