Advertisement
Guest User

Untitled

a guest
Apr 17th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.0.2.0
  8. * @ Author : DeZender
  9. * @ Release on : 06.04.2018
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. namespace App;
  15.  
  16. class Branch extends Illuminate\Database\Eloquent\Model
  17. {
  18. protected $fillable = ['profile_id', 'branch_name', 'map_address', 'latitude', 'longitude', 'business_hours', 'facilities'];
  19. protected $hidden = ['id'];
  20.  
  21. public function profile()
  22. {
  23. return $this->belongsTo('App\\Profile');
  24. }
  25.  
  26. public function app_sms_did_numbers()
  27. {
  28. return $this->hasMany('App\\App_sms_did_number');
  29. ...............................................................
  30. .................................
  31. ..............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement