The most productive way to build your next web app
Powerful, dynamic, front-end UIs without leaving PHP.
Start Here- Nicholas North
- Cameron Watson
- Jane Lambert
- Gabrielle Mills
- Luke Arnold
<input wire:model.live="search"> @foreach ($this->users as $user) <div>{{ $user->name }}</div>@endforeach
class SearchUsers extends Component{ public $search = ''; public function render() { return view('search-users', [ 'users' => User::search($this->search), ]); }}
βIMO Livewire takes Blade to the next level. It's basically what Blade should be by default. π₯β
Taylor OtwellCreator of Laravel
Livewire has everything.
Livewire's mission is to build on the efficiency and joy of building web apps with Laravel and push it to the max. Any part of web development that can be made easier, we have tried or are planning to do.
Forms
Building powerful forms is one of Livewire's greatest strengths. Otherwise difficult tasks, like real-time validation and file uploads, are made dead simple.
Tables
Displaying application data inside tables is possibly the most common need when building web apps. Livewire is perfectly suited for this task. Displaying data, paginating, filtering, and sorting are all a breeze with Livewire.
Charts
Displaying charts of real-time data feeds becomes trivial in Livewire. Hook up a data source to your favorite charting library and let Livewire keep it live on the page.
Image uploads
Handling file and image uploads is traditionally a difficult task. Livewire takes care of everything: validation, temporary uploads, preview images; everything.
Lazy loading
Instead of holding up an entire page load for a single component with a large database query, Livewire makes it incredibly easy to instead show a loading indicator and lazilly load the component on the page.
And much more
Livewire has countless features that make building interfaces a breeze. If you find something you can't do in Livewire, you can almost certainly do it in Alpine, which we've built to unlock unlimited possibilities.
Loved by developers around the world
Here's what people are saying about using Livewire.
Tony LeaBefore Livewire, my application was a messy bowl of AJAX spaghetti. Now, my front-end and back-end are super organized, and they communicate like telepathic twins finishing each other's sentences. Livewire has changed the way I think about building apps, and it has also made the process much more enjoyable!
Remi HindriksLivewire allowed me to make a career switch to Laravel developer because it was a very easy way for me to use both backend and frontend. Literally changed my life
Len WoodwardLivewire has allowed me to consolidate my test suites, since I no longer have to run a bunch of tests against compiled js.
Jake BennettLivewire allowed me to go from concept to production on a front-end heavy app while using PHP and Blade exclusively. I still can't believe it works! It's Magic! β¨
Andy NewhouseI fell in love with Livewire when it was announced, and I have used it on every project I can since then. Everything from small side projects to multi-million dollar e-commerce platforms. Livewire is developer friendly and intuitive; give it a try, and I bet you'll love it.
Philo HermansLaravel has undeniably transformed the PHP industry, and Livewire pushes this even further. It is a new era of full-stack application development. I already love PHP and Laravel, and Livewire amplifies that joy by allowing me to build full-blown SPAs and reactive components at a fraction of the costs. The seamless integration with Laravel's features and the fact that I don't have to write a bunch of Javascript is just awesome! Brace yourself for an experience that defies expectations!
Joel Piccoli da RosaAs a Laravel developer, Livewire brings immense joy! It offers the capabilities of a vue-like app, without the associated challenges. With just .blade.php files and your creative vision, the possibilities are endless!
Alex Garrett-SmithHonestly just install Livewire. You'll have a new way of building reactive apps in Laravel β and you won't look back.
Chris FidaoLivewire lets me create the interactivity of an SPA without having to learn yet-another frontend framework. Staying within Laravel and Blade is an absolute productivity *multiplier*. I donβt code without Livewire.
βI too think Livewire is π₯β
Caleb PorzioCreator of Livewire