| 12345678910111213141516171819202122 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelTimeFormat;
- use App\Traits\LogModelChanging;
- class PaperBox extends Model
- {
- use LogModelChanging;
- use ModelTimeFormat;
- protected $fillable=[
- 'model','length','width','height',
- ];
- public function owners(){
- return $this->belongsToMany('\App\Owner','owner_paper_box','paper_box_id','owner_id');
- }
- }
|