@extends('layouts.publicador.default') @section('content')
| @lang('labels.nome') | @choice('labels.partidos', 1) | @lang('labels.data_cadastro') | |
|---|---|---|---|
| {{ $item->nome_urna }} | {{ optional($item->pivot->partido)->sigla }} | {{ $item->pivot->created_at->format('d/m/Y H:i') }} | {!! Form::open(['method' => 'DELETE', 'route' => ['publicador.legislaturas.excluir_deputado', $model->id], 'class' => 'form-delete']) !!} @can('deputados_excluir') {{ Form::hidden('deputado', $item->id) }} {{ Form::button('', ['class' => 'btn btn-danger btn-sm btn-delete', 'type' => 'submit']) }} @endcan {!! Form::close() !!} |