@extends('layouts.app') @section('content')
{{ Session::get('flash_message') }}
Name | Unit | Fact Sheets | Status | Actions |
---|---|---|---|---|
{{ $item->name }} | {{ $item->unit ? $item->unit : 'N/A' }} | Common Issue / Causes / Remedy | {!! $item->status == 0 ? 'Inactive' : 'Active' !!} | {!! Form::open([ 'method'=>'DELETE', 'url' => ['/admin/equipment', $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() !!} |