WarZone.php 234 B

123456789101112
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class WarZone extends Model
  5. {
  6. protected $connection = 'mysql_z';
  7. protected $table='war_zone';
  8. protected $fillable = ['war_name','uid','war_avatar'];
  9. }