@extends('layouts.painel') @section('head') @endsection @section('title') {{ $title }} @endsection @section('content')
@error('file')
Erro:
{{ $message }}
@enderror

Listagem de Registros

@if (auth()->user()->type == 'A' || auth()->user()->type == 'M') @endif
@foreach ($salesEntry as $sale) @endforeach
ID Referência Emissão Total
{{ $sale->id }} {{ $sale->sale_id }} {{ \Carbon\Carbon::parse($sale->created_at)->setTimezone('America/Sao_Paulo')->format('d/m/Y') }} {{ number_format($sale->total, 2, ',', '.') }}
@endsection @section('scripts') @endsection