We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4befc02 commit 5d0747fCopy full SHA for 5d0747f
app/Models/Deal.php
@@ -20,6 +20,8 @@ protected function casts(): array
20
{
21
return [
22
'status' => DealStatus::class,
23
+ 'estimated_revenue' => 'float',
24
+ 'actual_revenue' => 'float',
25
];
26
}
27
app/Models/Lead.php
@@ -19,6 +19,7 @@ protected function casts(): array
19
'status' => LeadStatus::class,
+ 'estimated_revenue' => 'float'
app/Models/Product.php
@@ -18,6 +18,7 @@ protected function casts(): array
18
'type' => ProductType::class,
+ 'price' => 'float',
0 commit comments