UserGame.php 165 B

123456789
  1. <?php
  2. namespace App\Models;
  3. class UserGame extends BaseModel
  4. {
  5. protected $table = 'user_game';
  6. protected $fillable = ['game_name','game_id','member_id'];
  7. }