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

Internal Control

@if(Session::has('flash_message'))

{{ Session::get('flash_message') }}

@endif
IC Records
@foreach($ic as $item) @endforeach
StatusTypeBased OnActionTrigger
{{ $item->status }} {{ $item->type }} {{ $item->based_on }} {{ $item->action }} {{ $item->trigger }} days {!! Form::open([ 'method'=>'DELETE', 'url' => ['/admin/internalcontrol', $item->id], 'style' => 'display:inline' ]) !!} {!! Form::button('', array( 'type' => 'submit', 'class' => 'btn red btn-xs', 'title' => 'Delete Equipment', 'onclick'=>'return confirm("Confirm delete?")' )) !!} {!! Form::close() !!}
@endsection