You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -244,15 +244,15 @@ WirementBreezeCore::make()
244
244
245
245
#### Create custom My Profile components
246
246
247
-
In Breezy v2, you can now create custom Livewire components for the My Profile page and append them easily.
247
+
In Wirement Breeze, you can now create custom Livewire components for the My Profile page and append them easily.
248
248
249
249
1. Create a new Livewire component in your project using:
250
250
251
251
```
252
252
php artisan make:livewire MyCustomComponent
253
253
```
254
254
255
-
2. Extend the `MyProfileComponent` class included with Breezy. This class implements Actions and Forms.
255
+
2. Extend the `MyProfileComponent` class included with Wirement Breeze. This class implements Actions and Forms.
256
256
257
257
```php
258
258
use Kwhorne\WirementBreeze\Livewire\MyProfileComponent;
@@ -300,7 +300,7 @@ class MyCustomComponent extends MyProfileComponent
300
300
301
301
```
302
302
303
-
3. Within your Livewire component's view, you can use Breezy's `grid-section` blade component to match the style:
303
+
3. Within your Livewire component's view, you can use Wirement Breeze's `grid-section` blade component to match the style:
304
304
305
305
```blade
306
306
<x-wirement-breeze::grid-section md=2 title="Your title" description="This is the description">
@@ -319,7 +319,7 @@ class MyCustomComponent extends MyProfileComponent
319
319
</x-wirement-breeze::grid-section>
320
320
```
321
321
322
-
4. Finally, register your new component with Breezy:
322
+
4. Finally, register your new component with Wirement Breeze:
323
323
324
324
```php
325
325
use App\Livewire\MyCustomComponent;
@@ -417,7 +417,7 @@ class User extends Authenticatable
417
417
}
418
418
```
419
419
420
-
2. Enable Two Factor Authentication using the `enableTwoFactorAuthentication()` method on the Breezy plugin.
420
+
2. Enable Two Factor Authentication using the `enableTwoFactorAuthentication()` method on the Wirement Breeze plugin.
421
421
422
422
```php
423
423
WirementBreezeCore::make()
@@ -430,7 +430,7 @@ WirementBreezeCore::make()
430
430
431
431
3. Adjust the 2FA page
432
432
433
-
The Breezy 2FA page can be swapped for a custom implementation (see above), same as the Filament auth pages. This allows, for example, to define a custom auth layout like so:
433
+
The Wirement Breeze 2FA page can be swapped for a custom implementation (see above), same as the Filament auth pages. This allows, for example, to define a custom auth layout like so:
0 commit comments