@extends('layouts.admin.app') @section('title') Report @stop @section('style') @endsection @section('main')
{!! Form::open(['method'=>'POST','action' => 'ReportController@generate']) !!}
{!! Form::label('report_type', 'Report Type:') !!} {!! Form::select('report_type', [1=>'Sales',2=>'Inventory',3=>'Commission',4=>'Monthly'], null,['class'=>'form-control', 'placeholder'=>'Select Report Type', 'v-model'=>'report_type']) !!} @if ($errors->has('report_type')) {{ $errors->first('report_type') }} @endif
{!! Form::label('sales_by', 'Sales by:') !!} {!! Form::select('sales_by', [1=>'Sales Rep',2=>'New Accounts',3=>'Customers',4=>'ALL',5=>'SKU-shipped',6=>'SKU-invoiced'], null,['class'=>'form-control', 'placeholder'=>'Select Sales by']) !!} @if ($errors->has('sales_by')) {{ $errors->first('sales_by') }} @endif
{!! Form::label('date_from', 'Date From:') !!}
{!! Form::text('date_from', null, ['class'=>'form-control', 'autocomplete'=>'off']) !!}
@if ($errors->has('date_from')) {{ $errors->first('date_from') }} @endif
{!! Form::label('date_to', 'Date To:') !!}
{!! Form::text('date_to', null, ['class'=>'form-control', 'autocomplete'=>'off']) !!}
@if ($errors->has('date_to')) {{ $errors->first('date_to') }} @endif
{!! Form::label('type', 'Type:') !!} {!! Form::select('type', [1=>'Summary',2=>'Detailed'], null,['class'=>'form-control', 'placeholder'=>'Select Type']) !!} @if ($errors->has('type')) {{ $errors->first('type') }} @endif
{!! Form::label('type', 'Type') !!} {!! Form::select('type', [1=>'By Inventory',2=>'By Hot',3=>'By Requested'], null,['class'=>'form-control', 'placeholder'=>'Select Type']) !!} @if ($errors->has('type')) {{ $errors->first('type') }} @endif
{!! Form::label('rep', 'Sales Rep') !!} {!! Form::select('rep', $sales_rep, null,['class'=>'form-control', 'placeholder'=>'Select Sales Rep']) !!} @if ($errors->has('rep')) {{ $errors->first('rep') }} @endif
{!! Form::label('date_from', 'Date From:') !!}
{!! Form::text('date_from', null, ['class'=>'form-control', 'autocomplete'=>'off']) !!}
@if ($errors->has('date_from')) {{ $errors->first('date_from') }} @endif
{!! Form::label('date_to', 'Date To:') !!}
{!! Form::text('date_to', null, ['class'=>'form-control', 'autocomplete'=>'off']) !!}
@if ($errors->has('date_to')) {{ $errors->first('date_to') }} @endif
{!! Form::label('corporate_name', 'Corporate Name') !!} {!! Form::select('corporate_name', $companies, null,['class'=>'select2 form-control', 'placeholder'=>'Select Corporate Name','style'=>'width:100%;display:block','v-select2']) !!} @if ($errors->has('corporate_name')) {{ $errors->first('corporate_name') }} @endif
{!! Form::label('date_from', 'Date From:') !!}
{!! Form::text('date_from', null, ['class'=>'form-control', 'autocomplete'=>'off']) !!}
@if ($errors->has('date_from')) {{ $errors->first('date_from') }} @endif
{!! Form::label('date_to', 'Date To:') !!}
{!! Form::text('date_to', null, ['class'=>'form-control', 'autocomplete'=>'off']) !!}
@if ($errors->has('date_to')) {{ $errors->first('date_to') }} @endif
{!! Form::close() !!}
@stop @section('footer') @stop