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

Working with InertiaJS and Laravel

Hiren Dave
September 29, 2019
43

Working with InertiaJS and Laravel

Hiren Dave

September 29, 2019
Tweet

Transcript

  1. Hiren Dave Programmer | Tech Blogger | Tech Author |

    Tech Speaker I am a programmer and I will not fix your PC “ ”
  2. Introduction to InertiaJS What We Will Cover 1 2 3

    Using InertiaJS Laravel Adapter Using InertiaJs VueJs Adapter
  3. Introduction to InertiaJS Created By Jonathan Renink First released in

    2019 Modern Monolith for building Web apps Multi Task Learning / Self Taught Learning
  4. What is wrong with Client Side Apps Manage client side

    routing Data fetch with APIs Maintain state of the application
  5. Getting Started with InertiaJS class UsersController extends Controller { public

    function index() { return view('users.index',[ 'users'=>User::all() ]); } }
  6. Getting Started with InertiaJS class UsersController extends Controller { public

    function index() { return inertia(‘Users/index',[ 'users'=>User::all() ]); } }