@extends('adminlte::page') @section('title', 'Vendedores') @section('content_header')

Vendedores

@stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif
Filtros

@if(count($vendedores) == 0 ) @else @foreach($vendedores as $vendedor) @endforeach @endif
Código Nome Telefone Email Comissao Ação
Nenhum registro Nenhum registro Nenhum registro Nenhum registro Nenhum registro Nenhum registro
{{$vendedor->codigo}} {{$vendedor->nome}} {{$vendedor->telefone}} {{$vendedor->email}} {{ (number_format($vendedor->comissao, 2, ',', '.')) }}
{{ $vendedores->onEachSide(4)->links() }}
@if(isset($vendedor))
@method('delete') @csrf
@endif @stop @section('css') @stop @section('js') @stop