@foreach($teams as $team) @endforeach
# Nombre Apellido Telefono Cargo Email Imagen Facebook Twitter Linkedin Instagram Whatsapp Action
{{ $team->id }} {{ $team->nombre }} {{ $team->apellido }} {{ $team->telefono }} {{ $team->cargo }} {{ $team->email }} {{ $team->facebook }} {{ $team->twitter }} {{ $team->linkedin }} {{ $team->instagram }} {{ $team->whatsapp }} {!! Form::open(['route' => ['admin.teams.destroy', $team->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Desea eliminar el registro?')"]) !!}
{!! Form::close() !!}