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

Fornecedores

@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($fornecedores) == 0) @endif @foreach($fornecedores as $fornecedor) @endforeach
Código Razão Social/Nome Fantasia/Apelido CNPJ/CPF Ação
Nenhum registro Nenhum registro Nenhum registro Nenhum registro Nenhum registro
{{$fornecedor->codigo}} {{$fornecedor->razao_social_nome}} {{$fornecedor->fantasia}} {{$fornecedor->cnpj_cpf}}
{{ $fornecedores->onEachSide(4)->links() }}
@if(isset($fornecedor))
@method('delete') @csrf
@endif @stop @section('css') @stop @section('js') @stop