Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 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.9.0
  8. * @ Author : DeZender
  9. * @ Release on : 08.08.2019
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. namespace VanguardDK;
  15.  
  16. class Room extends \Illuminate\Database\Eloquent\Model
  17. {
  18. protected $table = 'rooms';
  19. protected $fillable = ['name', 'balance'];
  20. public $timestamps = false;
  21.  
  22. public function dealers_count()
  23. {
  24. $roomUsers = RoomUser::where('room_id', $this->id)->pluck('user_id');
  25. ................................................................................
  26. .............................................
  27. ...........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement