@extends('layouts.app') @section('content')

IC : {{ $ic->id }}

{!! Form::open([ 'method'=>'DELETE', 'url' => ['admin/internalcontrol', $ic->id], 'style' => 'display:inline' ]) !!} {!! Form::button(' Delete', array( 'type' => 'submit', 'class' => 'btn red btn-xs', 'title' => 'Delete', 'onclick'=>'return confirm("Confirm delete?")' ))!!} {!! Form::close() !!}

ID{{ $ic->id }}
Status {{ $ic->status }}
Type {!! $ic->type !!}
Based On {!! $ic->based_on !!}
Action {!! $ic->action !!}
Trigger {!! $ic->trigger !!}
@endsection