@extends('main.template')
@section('content')
@if(!$list->isEmpty())
Voltar
@endif
Gerir Cliente
@include('customer.info')
Filtrar Artigo
Historico do cliente {{ $customer->name ?? '' }}
@if(!$list->isEmpty())
|
Vendedor |
Cliente |
Fatura |
Data Emissão |
Data Liquidação |
Total |
@foreach ($list as $row)
|
{{ $row->Vendedor }} |
{{ $row->customer_name }}
{{ $row->Cliente }}
|
{{ $row->Fatura }} |
{{ $row->DataDoc }} |
{{ $row->DataLiq }} |
{{ $row->ValorTotal }} |
@endforeach
{{ $list->links() }}
@if(!$list->isEmpty())
Voltar
@endif
@else
Sem resultados
Voltar
@endif
@endsection
@section('pageJsIncludes')
@include('history.pagejs')
@endsection