123456789101112131415161718 |
- <?php
- namespace App\Modules\Order\Models;
- use Illuminate\Database\Eloquent\Model;
- class ChannelOrderStatisticDate extends Model
- {
- protected $table = 'channel_order_statistic_date';
- protected $fillable = [
- 'date',
- 'channel_id',
- 'amount',
- 'created_at',
- 'updated_at',
- ];
- }
|