@extends('default.layout') @section('content')

Conta Crediário

@if(session()->has('message'))
{{ session()->get('message') }}
@endif
Total a Selecionado: R$ 0,00

* Marque as contas e clique no botão para receber

@foreach($vendas as $v) @endforeach
Código Cliente Venda Valor Data Status Ações
@if(!$v->status)

@endif
{{ $v->venda_id }} {{ $v->cliente->razao_social }} {{ $v->venda->id }} {{ number_format($v->venda->valor_total, 2, ',', '.') }} {{ \Carbon\Carbon::parse($v->created_at)->format('d/m/Y H:i')}} @if($v->status == true) brightness_1 @else brightness_1 @endif print delete
SOMATÓRIO {{ number_format($soma, 2, ',', '.') }}

@if(count($vendas) > 0)

Graficos

@endif
@endsection