@extends('layout.app') @section('content')
Ventes ({{ $datas->count() }})   Ajouter
@foreach($datas as $data) @endforeach
Date Vendeur Commande Total ({!! htmlentities(auth()->user()->company->currency_symbol, ENT_NOQUOTES, 'UTF-8') !!}) Actions
{{ $data->datetime->translatedFormat('D d M Y à H:i') }} {{ $data->user->name }} Voir {{ number_format($data->total, 0, '', ' ') }} {{-- --}} {{-- --}} {{-- --}} @if($data->invoice()) @endif @if(!$data->hasRelatedRecords() AND !auth()->user()->isComptable()) @endif
@include('invoice.partials.payment-modal') @endsection @push('scripts') @endpush