ClientRepFollowUp.php 266 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. # use Illuminate\Database\Eloquent\Model;
  4. class ClientRepFollowUp extends Model
  5. {
  6. protected $table = 'client_rep_follow_up';
  7. public function pro(){
  8. return $this->hasOne(Pro::class, 'id', 'client_rep_pro_id');
  9. }
  10. }