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

Active Vehicle Type

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