@extends('layouts.master') @section('title', 'Charge Stations Reports') @section('links') {{ HTML::style('assets/MonthPicker.min.css')}} @endsection @section('content')
Organization Wise Stations Reports
{{-- --}}
@if(!Entrust::hasRole('organisation')) {!! Form::select('application', [null => 'Select Organization']+$packages, isset($application) ? $application : old('application'),['id'=>'application','class'=>'form-control select2-show-search input-xlarge select2me'])!!}   {!! Form::select('station', [null => 'Select Stations']+$stations, isset($station) ? $station : old('station'),['id'=>'station','class'=>'station form-control select2-show-search select2me'])!!}   @endif {!! Form::select('city_id', [null => 'City']+$cities, isset($city) ? $city : old('city_id'),['id'=>'city','class'=>'form-control select2-show-search input-xlarge select2me'])!!}   {!! Form::select('franchise_id', [null => 'Select Franchise']+$franchise, isset($franchise_id) ? $franchise_id : old('franchise_id'),['id'=>'franchise','class'=>'form-control select2-show-search input-xlarge select2me'])!!}  
{!! Form::select('connector_type', [null => 'Connector Types']+$connector_types, isset($connectortypes) ? $connectortypes : old('connector_type'),['id'=>'connectortypes','class'=>'form-control select2-show-search input-xlarge select2me'])!!}   {!! Form::select('charger_code', [null => 'Charger Types']+$charger_types, isset($chargertypes) ? $chargertypes : old('charger_code'),['id'=>'chargertypes','class'=>'form-control select2-show-search input-xlarge select2me'])!!}   {!! Form::select('status', [null => 'Select Status']+["active"=>"Active","in-active"=>"In-Active",'banned'=>"Banned"], isset($status) ? $status : old('status'),['id'=>'status','class'=>'form-control select2-show-search input-xlarge select2me'])!!}  
@if($search)
{{ $message }}
{{-- --}} @php $i=1; @endphp @foreach ($reports as $item) @php $i++; @endphp @endforeach
Transaction IdSl Station id name location_name address registred_on status
{{ $i }} {{ $item->station_id }} {{ $item->station_name }} {{ $item->location_name }} {{ $item->address }} {{ App\Classes\Helper::showDate($item->created_at) }} {{ \App\Classes\Helper::toWord($item->status) }}
@endif @endsection @section('scripts') @endsection