ChannelWithDrawCash.php 209 B

1234567891011121314
  1. <?php
  2. namespace App\Models\Withdraw;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ChannelWithDrawCash extends Model
  5. {
  6. protected $table = 'channel_withdraw_cashes';
  7. protected $guarded = ['id'];
  8. }