@extends('layouts.app')
@section('content')
furnizori {{ $furnizori->id }}
{!! Form::open([
'method'=>'DELETE',
'url' => ['furnizori', $furnizori->id],
'style' => 'display:inline'
]) !!}
{!! Form::button('', array(
'type' => 'submit',
'class' => 'btn btn-danger btn-xs',
'title' => 'Delete furnizori',
'onclick'=>'return confirm("Confirm delete?")'
));!!}
{!! Form::close() !!}
| ID | {{ $furnizori->id }} |
| Nume | {{ $furnizori->nume }} |
|---|
| Firma | {{ $furnizori->firma }} |
|---|
| Email | {{ $furnizori->email }} |
|---|
| Telefon | {{ $furnizori->telefon }} |
|---|
| Adresa | {{ $furnizori->adresa }} |
|---|
| Note | {{ $furnizori->note }} |
@endsection