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

Old Pumps

{!! Form::open(['action' => 'SmsSettingsController@search', 'method' => 'GET', 'class' => 'form-horizontal']) !!}
{{Form::text('key', Input::old('key'), ['class'=>'form-control', 'placeholder'=>'Type to search . . .'])}} {{Form::hidden('active', '1')}} {{Form::submit('Search . . .', ['class'=>'btn btn-primary col-md-offset-2'])}}
{!! Form::close() !!} @if(count($pumps)>0)
@foreach($pumps as $pump) @endforeach
Pump Name User Name SMS Balance SMS Dashboard Action
{{$pump->name}} {{$pump->smsUserName}} {{$pump->smsBalance}} {{$pump->smsDashboad}}
{{$pumps->links()}}
@else
No SMS Records Found.
@endif
@endsection