@extends('shared/layout') @section('title','Listado de proveedores') @section('content')
@foreach($proveedores as $item) @endforeach
Id Identificacion Nombre Direccion Telefono Email
{{$item->id}} {{$item->identificacion}} {{$item->nombre }} {{$item->direccion}} {{$item->telefono}} {{$item->email}}
@csrf @method('delete')
@endsection