1234567891011121314151617181920 |
- <?php
- namespace App\Models\Premium;
- use Illuminate\Database\Eloquent\Model;
- class PremiumPlatformPackage extends Model
- {
- protected $connection = 'mysql';
- protected $table = 'premium_platform_package';
- protected $primaryKey = 'rid';
- protected $keyType = 'int';
- public $timestamps = false;
- protected $guarded = [];
- }
|