21 lines
499 B
PHP
21 lines
499 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Stats\Monthly;
|
||
|
|
|
||
|
|
use App\Models\Stats\BaseStatModel;
|
||
|
|
|
||
|
|
class StatSalesMonthly extends BaseStatModel
|
||
|
|
{
|
||
|
|
protected $table = 'stat_sales_monthly';
|
||
|
|
|
||
|
|
protected $casts = [
|
||
|
|
'order_amount' => 'decimal:2',
|
||
|
|
'sales_amount' => 'decimal:2',
|
||
|
|
'shipment_amount' => 'decimal:2',
|
||
|
|
'avg_order_amount' => 'decimal:2',
|
||
|
|
'top_client_amount' => 'decimal:2',
|
||
|
|
'mom_growth_rate' => 'decimal:2',
|
||
|
|
'yoy_growth_rate' => 'decimal:2',
|
||
|
|
];
|
||
|
|
}
|