README.md
# Phoenix LiveController
[](https://github.com/karolsluszniak/phoenix_live_controller/blob/master/LICENSE.md)
[](https://travis-ci.org/karolsluszniak/phoenix_live_controller)
[](https://hex.pm/packages/phoenix_live_controller)
**Controller-style abstraction for building multi-action live views on top of Phoenix.LiveView.**
## Installation
Add `phoenix_live_controller` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:phoenix_live_controller, "~> 0.4.2"}
]
end
```
## Learning
- [Introductory article & guide for converting HTML resources to live controllers](http://cloudless.studio/articles/51-controller-style-approach-to-liveview-resources) with [example app](https://github.com/karolsluszniak/phoenix_live_controller_example_app)
- [Phoenix.LiveController docs for detailed explanation & examples of live controllers](https://hexdocs.pm/phoenix_live_controller)
- [Phoenix.LiveView docs for explanation of live view itself](https://hexdocs.pm/phoenix_live_view)