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

Deactive Pumps

{!! Form::open(['action' => 'ProspPumpsController@search', 'method' => 'GET', 'class' => 'form-horizontal']) !!}
Active List Deactive List
{{Form::text('key', Input::old('key'), ['class'=>'form-control', 'placeholder'=>'Type to search . . .'])}} {{Form::hidden('active', '0')}} {{Form::submit('Search . . .', ['class'=>'btn btn-primary col-md-offset-2'])}}
{!! Form::close() !!} @if(count($pumps)>0)
@foreach($pumps as $pump) @endforeach
Pump Name Owner Name Mobile No. Company Name Email Id Action
{{$pump->name}} {{$pump->oName}} {{$pump->oMobileNo1}} {{$pump->shortName}} {{$pump->oEmail}}
{{$pumps->links()}}
@else
No Deactive Pump Records Found.
@endif
@endsection