env('PENNANT_STORE', 'database'), /* |-------------------------------------------------------------------------- | Pennant Stores |-------------------------------------------------------------------------- | | Here you may configure each of the stores that should be available to | Pennant. These stores shall be used to store resolved feature flag | values - you may configure as many as your application requires. | */ 'stores' => [ 'array' => [ 'driver' => 'array', ], 'database' => [ 'driver' => 'database', 'connection' => null, 'table' => 'features', ], ], ];