InventoryDailyLoggingOwner.php 271 B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class InventoryDailyLoggingOwner extends Model
  5. {
  6. protected $fillable=[
  7. "owner_id","status"
  8. ];
  9. public function owner(){
  10. return $this->hasOne('App\Owner','id','owner_id');
  11. }
  12. }