@extends('layouts.app') @section('content')
@include('admin.sidebar')
tool_creation {{ $tool_creation->id }}
{!! Form::open([ 'method'=>'DELETE', 'url' => ['store/tool_creation', $tool_creation->id], 'style' => 'display:inline' ]) !!} {!! Form::button(' Delete', array( 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'title' => 'Delete tool_creation', 'onclick'=>'return confirm("Confirm delete?")' ))!!} {!! Form::close() !!}

ID{{ $tool_creation->id }}
Tool {{ $tool_creation->tool }}
Quantity {{ $tool_creation->quantity }}
Size {{ $tool_creation->size }}
@endsection