|IntegrationVariable newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable newQuery() * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable query() * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable whereIntegrationId($value) * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable whereKey($value) * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable whereSecret($value) * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|IntegrationVariable whereValue($value) * @mixin \Eloquent */ class IntegrationVariable extends Model { use HasFactory; protected $table = 'integration_variables'; protected $guarded = [ 'id', // Add more fields that shouldn't be edited here ]; protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', // Add your casts here (e.g., 'is_active' => 'boolean') ]; // Relationships // Business Logic Methods // Custom Finders // Query Scopes }