PaperBox.php 305 B

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