@extends('estilos.main')
@section('content')
@include('vendas.venda.search')
| Id |
Cliente |
Recibo |
Serie |
Numero |
Imposto |
Total |
Opcoes |
@foreach ($vendas as $v)
| {{$v->id}} |
{{$v->nome}} |
{{$v->recibo}} |
{{$v->serie}} |
{{$v->numero}} |
{{$v->imposto}} |
{{$v->total_vendas}} |
|
@include('vendas.venda.modal')
@endforeach
{{$vendas->render()}}
@endsection