CommodityBarcode.php 342 B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelTimeFormat;
  5. class CommodityBarcode extends ModelExtended
  6. {
  7. use ModelTimeFormat;
  8. protected $fillable=['code','commodity_id','created_at'];
  9. public function commodity(){
  10. return $this->belongsTo('App\Commodity','commodity_id','id');
  11. }
  12. }