123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace App\Http\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- /**
- * 商品
- * Class Goods
- *
- * @package App\Http\Models
- * @mixin \Eloquent
- */
- class Goods extends Model
- {
- use SoftDeletes;
- protected $table = 'goods';
- protected $primaryKey = 'id';
- protected $dates = ['deleted_at'];
- function scopeType($query, $type)
- {
- return $query->where('type', $type)->where('status', 1)->orderBy('sort', 'desc');
- }
- function label()
- {
- return $this->hasMany(GoodsLabel::class, 'goods_id', 'id');
- }
- function getPriceAttribute($value)
- {
- return $value / 100;
- }
- function setPriceAttribute($value)
- {
- $this->attributes['price'] = $value * 100;
- }
- function getTrafficLabelAttribute()
- {
- $traffic_label = flowAutoShow($this->attributes['traffic'] * 1048576);
- return $traffic_label;
- }
- }
|