@extends('layouts.app')
@section('content')
tva {{ $tva->id }}
{!! Form::open([
'method'=>'DELETE',
'url' => ['tva', $tva->id],
'style' => 'display:inline'
]) !!}
{!! Form::button('', array(
'type' => 'submit',
'class' => 'btn btn-danger btn-xs',
'title' => 'Delete tva',
'onclick'=>'return confirm("Confirm delete?")'
));!!}
{!! Form::close() !!}
| ID | {{ $tva->id }} |
| Name | {{ $tva->name }} |
|---|
| Value | {{ $tva->value }} |
@endsection