Skip to content

Commit 605e2af

Browse files
authored
Merge branch 'main' into fix-phpstorm-on-windows-v1
2 parents e0a03cc + b138b24 commit 605e2af

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

.ai/fluxui-free/core.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
- Fallback to standard Blade components if Flux is unavailable.
77
- If available, use Laravel Boost's `search-docs` tool to get the exact documentation and code snippets available for this project.
88
- Flux UI components look like this:
9+
@verbatim
910
<code-snippet name="Flux UI Component Usage Example" lang="blade">
1011
<flux:button variant="primary"/>
1112
</code-snippet>
13+
@endverbatim
1214

1315
### Available Components
1416
This is correct as of Boost installation, but there may be additional components within the codebase.

.ai/fluxui-pro/core.blade.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
- Fallback to standard Blade components if Flux is unavailable.
77
- If available, use Laravel Boost's `search-docs` tool to get the exact documentation and code snippets available for this project.
88
- Flux UI components look like this:
9+
@verbatim
910
<code-snippet name="Flux UI component usage example" lang="blade">
1011
<flux:button variant="primary"/>
1112
</code-snippet>
13+
@endverbatim
1214

1315
### Available Components
1416
This is correct as of Boost installation, but there may be additional components within the codebase.

.ai/volt/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- This project uses Livewire Volt for interactivity within its pages. New pages requiring interactivity must also use Livewire Volt. There is documentation available for it.
44
- Make new Volt components using `php artisan make:volt [name] [--test] [--pest]`
55
- Volt is a **class-based** and **functional** API for Livewire that supports single-file components, allowing a component's PHP logic and Blade templates to co-exist in the same file
6-
- Livewire Volt allows PHP logic and Blade templates in one file. Components use the `@volt` directive.
6+
- Livewire Volt allows PHP logic and Blade templates in one file. Components use the @verbatim`@volt`@endverbatim directive.
77
- You must check existing Volt components to determine if they're functional or class based. If you can't detect that, ask the user which they prefer before writing a Volt component.
88

99
### Volt Functional Component Example

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/boost/compare/v1.0.12...main)
3+
## [Unreleased](https://github.com/laravel/boost/compare/v1.0.14...main)
4+
5+
## [v1.0.14](https://github.com/laravel/boost/compare/v1.0.13...v1.0.14) - 2025-08-14
6+
7+
### What's Changed
8+
9+
* Fixes #85 by adding verbatim to flux component example by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/114
10+
11+
**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.13...v1.0.14
12+
13+
## [v1.0.13](https://github.com/laravel/boost/compare/v1.0.12...v1.0.13) - 2025-08-14
14+
15+
### What's Changed
16+
17+
* Fix volt blade parsing by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/112
18+
19+
**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.12...v1.0.13
420

521
## [v1.0.12](https://github.com/laravel/boost/compare/v1.0.11...v1.0.12) - 2025-08-14
622

0 commit comments

Comments
 (0)