@extends('admin.template.master') @section('title')

Complaints

@endsection @section('main-content')
@if(Session::has('message'))
{{Session('message')}}
@endif

Complaints Filter

{!! Form::label('status', 'Status') !!} {!! Form::select('status',[null => 'Select Status', 'Pending' => 'Pending','Working' => 'Working','Finished' => 'Finished'], null,['class' =>'form-control', 'id'=>'status']) !!}
{!! Form::label('type', 'Type') !!} {!! Form::select('type',[null => 'Select Type', 'Service' => 'Service', 'Behavior' => 'Behavior','Website' => 'Website', 'Price' => 'Price', 'Product information' => 'Product information', 'General' => 'General', 'Ryans Care Ltd.' => 'Ryans Care Ltd.', 'Warranty' => 'Warranty'], null,['class' =>'form-control', 'id'=>'type']) !!}
{!! Form::label('branch','Branch/Location/Platform') !!} {!! Form::select('branch', $availableLocations, null, ['class' => 'form-control', 'placeholder' => 'Select Branch/Location/Platform', 'id' => 'branch']) !!}
{!! Form::label('from_date', 'From Date') !!} {!! Form::date('from_date', \Carbon\Carbon::now()->subMonth(), ['class' => 'form-control', 'id' => 'from_date']) !!}
{!! Form::label('to_date', 'To Date') !!} {!! Form::date('to_date', \Carbon\Carbon::now(), ['class' => 'form-control', 'id' => 'to_date']) !!}

List

{!! Form::hidden('status', 1, ['id' => 'status']) !!}
ID Details Branch Related Person Customer Created Date Updated Date Status Type Updated By Action
@endsection @section('javascripts') @endsection