17 lines
588 B
PHP
17 lines
588 B
PHP
{!! Form::open(['route' => ['analyses.destroy', $id], 'method' => 'delete']) !!}
|
|
<div class='btn-group'>
|
|
<a href="{{ route('analyses.show', $id) }}" class='btn btn-default btn-xs'>
|
|
<i class="fa fa-eye"></i>
|
|
</a>
|
|
<a href="{{ route('analyses.edit', $id) }}" class='btn btn-default btn-xs'>
|
|
<i class="fa fa-edit"></i>
|
|
</a>
|
|
{!! Form::button('<i class="fa fa-trash"></i>', [
|
|
'type' => 'submit',
|
|
'class' => 'btn btn-danger btn-xs',
|
|
'onclick' => 'return confirm("'.__('crud.are_you_sure').'")'
|
|
|
|
]) !!}
|
|
</div>
|
|
{!! Form::close() !!}
|