Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Laravel's Ecosystem

Laravel's Ecosystem

Talk a gave at a local meetup about Laravel's Ecosystem. This talk was born as a blog post I wrote for blog of the company I work for (same title, link: blog.madewithlove.be/post/laravel-ecosystem/). At the end I did a little demo where I showed how to use Elixir to compile your assets (using babel to compile ES6 JS code and asset versioning), the brodcasting feature with pusher.com and socialite.

Tony Messias

June 12, 2015
Tweet

More Decks by Tony Messias

Other Decks in Programming

Transcript

  1. #development $ tree -d -L 1 . ├── app ├──

    bootstrap ├── config ├── database ├── public ├── resources ├── storage ├── tests └── vendor
  2. #development $ tree -d app app ├── Console │ └──

    Commands ├── Events ├── Exceptions ├── Http │ ├── Controllers │ │ └── Auth │ ├── Middleware │ └── Requests ├── Jobs ├── Listeners ├── Providers └── Services
  3. #development $ tree -d -L 2 resources resources ├── assets

    │ └── less ├── lang │ └── en └── views ├── errors └── vendor