ChannelOrderStatistic.php 301 B

1234567891011121314151617
  1. <?php
  2. namespace App\Modules\Order\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ChannelOrderStatistic extends Model
  5. {
  6. protected $table = 'channel_order_statistic';
  7. protected $fillable = [
  8. 'channel_id',
  9. 'amount',
  10. 'created_at',
  11. 'updated_at',
  12. ];
  13. }