PaperBox.php 362 B

123456789101112131415161718
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelTimeFormat;
  5. class PaperBox extends Model
  6. {
  7. use ModelTimeFormat;
  8. protected $fillable=[
  9. 'model','length','width','height',
  10. ];
  11. public function owners(){
  12. return $this->belongsToMany('\App\Owner','owner_paper_box','paper_box_id','owner_id');
  13. }
  14. }