CollectionWallet.php 335 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models\Collection;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CollectionWallet extends Model
  5. {
  6. protected $connection = 'mysql';
  7. protected $table = 'collection_wallet';
  8. protected $primaryKey = 'rid';
  9. protected $keyType = 'int';
  10. public $timestamps = false;
  11. protected $guarded = [];
  12. }