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

Product Requests

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

Product Requests Filter

{!! Form::label('status', 'Status') !!} {!! Form::select('status',[null => 'Select Status', 'all' => 'All', 0 => 'Pending',1 => 'Working',2 => 'Finished',3 => 'Closed'], 0,['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

{{-- --}} {{-- --}}
ID Product DetailsBranchCustomer Name Customer Contact Created Date StatusTypeUpdated Date Updated By Action
@endsection @section('javascripts') @endsection