19 lines
420 B
PHP
19 lines
420 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Stats\Daily;
|
||
|
|
|
||
|
|
use App\Models\Stats\BaseStatModel;
|
||
|
|
|
||
|
|
class StatQuotePipelineDaily extends BaseStatModel
|
||
|
|
{
|
||
|
|
protected $table = 'stat_quote_pipeline_daily';
|
||
|
|
|
||
|
|
protected $casts = [
|
||
|
|
'stat_date' => 'date',
|
||
|
|
'quote_amount' => 'decimal:2',
|
||
|
|
'quote_conversion_rate' => 'decimal:2',
|
||
|
|
'prospect_amount' => 'decimal:2',
|
||
|
|
'bidding_amount' => 'decimal:2',
|
||
|
|
];
|
||
|
|
}
|