| {{ $item->id }} |
{{ $item->nume }} |
{{ $item->tip->name }} |
{{ $item->category->name }} | {{ $item->cost }} | {{ $item->cost_ora }} | {{ $item->pret_ora }} | {{ $item->pret_cinci_minute }} |
{!! Form::open([
'method'=>'DELETE',
'url' => ['/manopere', $item->id],
'style' => 'display:inline'
]) !!}
{!! Form::button('', array(
'type' => 'submit',
'class' => 'btn btn-danger btn-xs',
'title' => 'Delete manopere',
'onclick'=>'return confirm("Confirm delete?")'
));!!}
{!! Form::close() !!}
|
@endforeach