@extends('layouts.master') @section('content')
MATRICULA | NOME | NOME FUNCIONAL | CELULAR | AÇÕES | @if ($contributors) @foreach($contributors as $contributor)
---|---|---|---|---|
{{ $contributor->matricula }} | {{ $contributor->name }} | {{ $contributor->nome_funcional }} | {{ $contributor->whatsapp }} | {!! Form::open([ 'method' => 'get', 'route' => ['contributors/edit', $contributor->id] ]) !!} {!! Form::close() !!} {!! Form::open([ 'method' => 'get', 'route' => ['user/delete', $contributor->id], 'onsubmit' => 'return ConfirmDelete()' ]) !!} {!! Form::close() !!} |