Laraconfig
Laraconfig copied to clipboard
Per-user settings repository system for Laravel
This pull request allows us to use this package. #26 We are using this fork in our project and it works so far. Could you please check it out?
When initialising the settings I get this error: **Column not found: 1054 Unknown column 'theme' in 'field list' (SQL: insert into `user_settings` (`settable_id`, `settable_type`, `metadata_id`, `theme`, `updated_at`, `created_at`) values (1,...
Hi, I am facing issue that when I run the **php artisan settings:migrate** command my database gets nicely seeded how ever the models do not include backslashes there for **$user->settings**...
darkghosthunter/laraconfig dev-master requires illuminate/support ^8.43 -> satisfiable by illuminate/support[v8.43.0, ..., 8.x-dev].
`php artisan settings:migrate` command not working Cannot declare class `App\Models\AnyModel`, because the name is already in use I tried remove this model, and this issue occurs again on next model...
The functionality works perfectly on browser. But it keeps failing on feature test. Here is my controller snippet. ```php public function update(Request $request) { $settings = [ 'DARK_MODE', 'SEND_NOTIFICATION_ON_NEW_PROJECT_REQUEST', 'SEND_NOTIFICATION_ON_NEW_JOB_REQUEST'...
hi, no matter what setting i create, i get the error setting doesn't exist. Laravel Version: 8.61.0 PHP 8 I can see the settings in table, they are enabled. Everything...
Time for a new tag? Some bugs are missing in 1.3.5 :)
when we create the settings as follows: ``` Setting::name('color') ->array() ->group('theme'); ``` in this case default value for this setting should be null but in the table `user_settings` the default...
I have an existing codebase with many users already in the database. When I retrieve one of these existing users, their settings are not initialised. This results in the following...