| {{ $item->id }} |
{{ $item->cod }} | {{ $item->name }} | {{{ $item->category->name or 'N/A' }}} |
{{ $item->tip->name }} | {{ $item->cost }} | {{ $item->cost_with_vat }} |
{{ $item->price }} | {{ $item->price_with_vat }} |
{{--{{ $item->furnizor_id }} | --}}
{!! Form::open([
'method'=>'DELETE',
'url' => ['/marfuri', $item->id],
'style' => 'display:inline'
]) !!}
{!! Form::button('', array(
'type' => 'submit',
'class' => 'btn btn-danger btn-xs',
'title' => 'Delete marfuri',
'onclick'=>'return confirm("Confirm delete?")'
));!!}
{!! Form::close() !!}
|
@endforeach