@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content')
Unit

Deactive Unit

{!! Form::open(['action' => 'UnitsController@search', 'method' => 'GET', 'class' => 'form-horizontal']) !!}
{{Form::text('key', Input::old('key'), ['class'=>'form-control', 'placeholder'=>'Type to search . . .'])}} {{Form::submit('Search . . .', ['class'=>'btn btn-primary col-md-offset-2'])}} {{Form::hidden('active', '0', ['class'=>'form-control'])}}
@if(count($units)>0)
@foreach($units as $unit) @endforeach
Unit Name Action
{{$unit->name}}
{{$units->links()}}
@else
No Deactive Unit Records Found.
@endif
@endsection