@extends('layout.main') @section('filter')

Filter

{{ Form::text('Search', '', array("class"=>"form-control")) }}
{{ Form::select('AccountID', $accounts, '' , array("class"=>"select2")) }}
{{Form::select('DealType',$dealTypes, '',array("class"=>"select2"))}}
{{ Form::text('StartDate', '', array("class"=>"form-control small-date-input datepicker", "data-date-format"=>"yyyy-mm-dd" ,"data-enddate"=>date('Y-m-d'))) }}
{{ Form::text('EndDate', '', array("class"=>"form-control small-date-input datepicker","data-date-format"=>"yyyy-mm-dd" ,"data-enddate"=>date('Y-m-d'))) }}
{{Form::select('Status',Deal::$StatusDropDown, 'Active',array("class"=>"select2"))}}

@stop @section('content')

Deal Management

@include('includes.errors') @include('includes.success')
@if(User::checkCategoryPermission('DealManagement','Add')) Add New @endif

{{-- --}}
Title Account Codedeck Start Date End Date Alert Email Deal Type Live Profit Status Action
@stop @section('footer_ext') @parent @stop