Skip to content

Commit de4c259

Browse files
authoredJun 30, 2023
Merge pull request #14 from lara-zeus/new-updates
tons of updates
2 parents 58a7e46 + 6053315 commit de4c259

25 files changed

+553
-91
lines changed
 

‎composer.lock

+59-59
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎docs/create-widget.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: Create Widget
3+
weight: 5
4+
---
5+
6+
## Create Custom Widget
7+
8+
Add any custom widget you want.
9+
10+
Create the widget using the following command, passing the name of the widget:
11+
12+
```bash
13+
php artisan make:zeus-widget Forms
14+
```
15+
16+
this will create two files:
17+
`FormsWidget.php`
18+
to define all fields you want to store it with the widget
19+
20+
`FormsWidget.blade.php`
21+
the view to be rendered on the frontend
22+
23+
## Customization
24+
check out the contract `LaraZeus\Rain\Widgets\Widget.php` and see all the available methods.

0 commit comments

Comments
 (0)