From dc4ab20480c23ddac67a73bf86123db28e0e161f Mon Sep 17 00:00:00 2001 From: trueChazza Date: Mon, 19 Dec 2022 11:33:26 +1300 Subject: [PATCH 1/3] docs: refactor livewire stack introduction change don't feel comfortable to great alternative approach --- 2.x/introduction.md | 2 +- 2.x/stacks/livewire.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/2.x/introduction.md b/2.x/introduction.md index 5ac17e3..d1e016e 100644 --- a/2.x/introduction.md +++ b/2.x/introduction.md @@ -16,7 +16,7 @@ Laravel Jetstream offers your choice of two frontend stacks: [Livewire](https:// ### Livewire + Blade -[Laravel Livewire](https://laravel-livewire.com) is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an application that is dynamic and reactive but don't feel comfortable jumping into a full JavaScript framework like Vue.js. +[Laravel Livewire](https://laravel-livewire.com) is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an application that is dynamic and reactive, and is a great alternative approach to a full JavaScript framework like Vue.js. When using Livewire, you may pick and choose which portions of your application will be a Livewire component, while the remainder of your application can be rendered as the traditional Blade templates you are used to. diff --git a/2.x/stacks/livewire.md b/2.x/stacks/livewire.md index 0f28f69..6caf729 100644 --- a/2.x/stacks/livewire.md +++ b/2.x/stacks/livewire.md @@ -4,7 +4,7 @@ ## Introduction -Laravel Livewire is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an application that is dynamic and reactive but don't feel comfortable jumping into a full JavaScript framework like Vue.js. +Laravel Livewire is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an application that is dynamic and reactive, and is a great alternative approach to a full JavaScript framework like Vue.js. When using Livewire, your application's routes will respond with typical Blade templates. However, within these templates you may render Livewire components as necessary: From 553e933e22d3bd0fdafb05706b5dd343af66cf29 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 19 Dec 2022 09:50:21 -0600 Subject: [PATCH 2/3] Update introduction.md --- 2.x/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.x/introduction.md b/2.x/introduction.md index d1e016e..5a88b66 100644 --- a/2.x/introduction.md +++ b/2.x/introduction.md @@ -16,7 +16,7 @@ Laravel Jetstream offers your choice of two frontend stacks: [Livewire](https:// ### Livewire + Blade -[Laravel Livewire](https://laravel-livewire.com) is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an application that is dynamic and reactive, and is a great alternative approach to a full JavaScript framework like Vue.js. +[Laravel Livewire](https://laravel-livewire.com) is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an application that is dynamic and reactive, and is a great alternative to a full JavaScript framework like Vue.js. When using Livewire, you may pick and choose which portions of your application will be a Livewire component, while the remainder of your application can be rendered as the traditional Blade templates you are used to. From f212c2f06d26dc94dffd8e90d0aaa34205a30aa0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 19 Dec 2022 09:51:44 -0600 Subject: [PATCH 3/3] Update livewire.md --- 2.x/stacks/livewire.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.x/stacks/livewire.md b/2.x/stacks/livewire.md index 6caf729..a9d9e60 100644 --- a/2.x/stacks/livewire.md +++ b/2.x/stacks/livewire.md @@ -4,7 +4,7 @@ ## Introduction -Laravel Livewire is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an application that is dynamic and reactive, and is a great alternative approach to a full JavaScript framework like Vue.js. +Laravel Livewire is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an application that is dynamic and reactive, and is a great alternative to a full JavaScript framework like Vue.js. When using Livewire, your application's routes will respond with typical Blade templates. However, within these templates you may render Livewire components as necessary: