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

Active 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', '1', ['class'=>'form-control'])}}
{!! Form::close() !!} @if(count($units)>0)
@foreach($units as $unit) @endforeach
Unit Name Action
{{$unit->name}}
{{$units->links()}}
@else
No Active Unit Records Found.
@endif
@endsection