| 1234567891011121314151617181920 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelTimeFormat;
- use App\Traits\LogModelChanging;
- class CommodityBarcode extends Model
- {
- use LogModelChanging;
- use ModelTimeFormat;
- protected $fillable=['code','commodity_id','created_at'];
- public function commodity(){
- return $this->belongsTo('App\Commodity','commodity_id','id');
- }
- }
|