|Integrations newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Integrations newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Integrations query() * @method static \Illuminate\Database\Eloquent\Builder|Integrations whereActive($value) * @method static \Illuminate\Database\Eloquent\Builder|Integrations whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Integrations whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Integrations whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|Integrations whereIntegrationType($value) * @method static \Illuminate\Database\Eloquent\Builder|Integrations whereName($value) * @method static \Illuminate\Database\Eloquent\Builder|Integrations whereUnitId($value) * @method static \Illuminate\Database\Eloquent\Builder|Integrations whereUpdatedAt($value) * @mixin \Eloquent */ class Integrations extends Model { use HasFactory; protected $table = 'integrations'; 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 }