PaperBox.php 423 B

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