-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
126 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: v3 | ||
slogan: multiple choice grid component form for filamentPHP | ||
githubUrl: https://github.com/lara-zeus/multiple-choice | ||
branch: v3.x | ||
icon: carbon-scatter-matrix | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Zeus Matrix Choice | ||
|
||
Matrix Choice is a multiple choice grid component form for filamentPHP | ||
|
||
## Features | ||
|
||
- 🔥 use as a radio button | ||
- 🔥 use as a checkbox button | ||
- 🔥 set Column Data and Row Data | ||
- 🔥 ask me for more | ||
|
||
## Screenshots | ||
|
||
![](https://larazeus.com/images/screenshots/multiple-choice/form-1.png) | ||
|
||
## More Details | ||
**✨ to learn more about Matrix Choice, please visit:** | ||
|
||
- [Discord](https://discord.com/channels/883083792112300104/1121563279668555897) | ||
- [Docs](https://larazeus.com/docs/multiple-choice) | ||
- [Github](https://github.com/lara-zeus/multiple-choice) | ||
- [Demo](https://demo.larazeus.com/admin/users/create) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: Getting Started | ||
weight: 1 | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: Themes and Assets | ||
weight: 6 | ||
--- | ||
|
||
## Compiling assets | ||
|
||
we use [tailwind Css](https://tailwindcss.com/) and custom themes by filament, make sure you are familiar with [tailwindcss configuration](https://tailwindcss.com/docs/configuration), and how to make custom [filament theme](https://filamentphp.com/docs/2.x/admin/appearance#building-themes). | ||
|
||
### Custom Classes: | ||
|
||
You need to add these files to your `tailwind.config.js` file in the `content` section. | ||
|
||
* filament: | ||
* `./vendor/lara-zeus/multiple-choice/resources/views/**/*.blade.php` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: Changelog | ||
weight: 100 | ||
--- | ||
|
||
All changes to @zeus Bolt are auto updated documented on GitHub [changelog](https://github.com/lara-zeus/bolt/blob/main/CHANGELOG.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
title: Installation | ||
weight: 3 | ||
--- | ||
|
||
## Installation | ||
|
||
Install @zeus Matrix Choice by running the following commands in your Laravel project directory. | ||
|
||
```bash | ||
composer require lara-zeus/multiple-choice | ||
``` | ||
|
||
## Usage: | ||
|
||
use it in your resource | ||
|
||
```php | ||
Matrix::make('question') | ||
->label('Tell us about your mod') | ||
->asRadio() | ||
// or | ||
->asCheckbox() | ||
->columnData([ | ||
'🙂', | ||
'😐', | ||
'🙁', | ||
]) | ||
->rowData([ | ||
'Saturday', | ||
'Sunday', | ||
'Monday', | ||
]), | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Introduction | ||
weight: 1 | ||
--- | ||
|
||
## Introduction | ||
@zeus Matrix Choice is a multiple choice grid component form for filamentPHP. | ||
|
||
**[Demo](https://demo.larazeus.com/admin/users/create) · [Github](https://github.com/lara-zeus/multiple-choice) · [Discord](https://discord.com/channels/883083792112300104/1121563279668555897)** | ||
|
||
## features | ||
|
||
- 🔥 use as a radio button | ||
- 🔥 use as a checkbox button | ||
- 🔥 set Column Data and Row Data | ||
- 🔥 ask me for more | ||
|
||
## Support | ||
|
||
Available support channels: | ||
|
||
* Join our channel in discord [Discord](https://discord.com/channels/883083792112300104/1121563279668555897) | ||
* open an issue on [GitHub](https://github.com/lara-zeus/multiple-choice/issues) | ||
* Email us using the [contact center](https://still-code.com/contact-us/lara-zeus) |