diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5a14035..c61b59b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
All notable changes to `livewire-filters` will be documented in this file.
+## 0.3 - 2022-03-05
+
+- Added `getOptionId` method for better handling of setting an option's ID attribute when dealing with associative arrays
+- Added `getOptionName` method for better handling of setting an option's name attribute when dealing with associative arrays
+- Added `getOptionValue` method for better handling of setting an option's value when dealing with associative arrays
+
## 0.2 - 2022-02-28
- Added the `meta` field to `Filter` class
diff --git a/composer.json b/composer.json
index f7a084b..9608dd9 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
{
"name": "kirschbaum-development/livewire-filters",
- "description": "This is my package livewire-filters",
+ "description": "Livewire Filters is a series of Livewire components that provide you with the tools to do live filtering of your data from your own Livewire components.",
"keywords": [
"kirschbaum-development",
"laravel",
@@ -19,6 +19,7 @@
"require": {
"php": "^8.0",
"illuminate/contracts": "^9.0",
+ "illuminate/support": "^9.0",
"livewire/livewire": "^2.10",
"spatie/laravel-package-tools": "^1.9.2"
},
diff --git a/resources/views/checkbox-filter.blade.php b/resources/views/checkbox-filter.blade.php
index e3cc2f2..08b8f41 100644
--- a/resources/views/checkbox-filter.blade.php
+++ b/resources/views/checkbox-filter.blade.php
@@ -1,16 +1,16 @@
- @foreach ($options as $option)
+ @foreach ($options as $id => $option)