Skip to content

Commit 4a63a6a

Browse files
committed
Merge branch 'lead-fixes' of https://github.com/amit-webkul/laravel-crm into lead-fixes
2 parents 0e756d1 + 568bc05 commit 4a63a6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/Webkul/Admin/src/Http/Requests/LeadForm.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
namespace Webkul\Admin\Http\Requests;
44

5+
use Carbon\Carbon;
56
use Illuminate\Foundation\Http\FormRequest;
67
use Webkul\Attribute\Repositories\AttributeRepository;
78
use Webkul\Attribute\Repositories\AttributeValueRepository;
89
use Webkul\Core\Contracts\Validations\Decimal;
9-
use Carbon\Carbon;
1010

1111
class LeadForm extends FormRequest
1212
{
@@ -130,7 +130,7 @@ public function rules()
130130

131131
$this->rules['expected_close_date'] = [
132132
'date_format:Y-m-d',
133-
'after:' . Carbon::yesterday()->format('Y-m-d'),
133+
'after:'.Carbon::yesterday()->format('Y-m-d'),
134134
];
135135

136136
return [

0 commit comments

Comments
 (0)