@extends('layouts.app')
@section('content')
manopere {{ $manopere->id }}
{!! Form::open([
'method'=>'DELETE',
'url' => ['manopere', $manopere->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() !!}
| ID | {{ $manopere->id }} |
| Nume | {{ $manopere->nume }} |
|---|
| Tip Manopera Id | {{ $manopere->tip_manopera_id }} |
|---|
| Category Id | {{ $manopere->category_id }} |
|---|
| Cost | {{ $manopere->cost }} |
|---|
| Cost Ora | {{ $manopere->cost_ora }} |
|---|
| Pret Ora | {{ $manopere->pret_ora }} |
|---|
| Pret Cinci Minute | {{ $manopere->pret_cinci_minute }} |
@endsection