boss

  1. tinker… what?
  2. includes
  3. casters (presenters)
  4. aliases
  5. http (and other) helpers
  6. wtf is this error?


Tinker… what?

REPL idea is nothing new, but it wasn’t very popular in day-to-day work in PHP until recently, when Laravel 4 came out and shipped with BORIS. It allowed interacting with whole Laravel app directly in the console and made working with things like Eloquent models, queries and pretty much everything in the app a cinch.

Boris was cool, but with Laravel 5 we got something new to play with – PsySH, and that’s what we’re gonna talk about here.

Now is the time to go to your console, type $ php artisan tinker and follow along

Laravel – tinker like a boss with PsySH from Jarek on Vimeo.

 

Enjoy and share your thoughts in the comments below or on twitter @SOFTonSOFA

It's only fair to share...Tweet about this on TwitterShare on RedditPin on PinterestShare on FacebookShare on Google+

Related Post

Tinker like a boss – aliases This is part of the series tinker like a boss (in psysh) tinker... what? includes casters (presenters) aliases http (and other) helpers ...
Tinker like a boss – custom casters This is part of the series tinker like a boss (in psysh) tinker... what? includes casters (presenters) aliases http (and other) helpers ...
Tinker like a boss – custom includes This is part of the series tinker like a boss (in psysh) tinker... what? includes casters (presenters) aliases http (and other) helpers ...
Querying relations in Laravel: get Models where la... Another part of Querying relations in Laravel will cover such problem: I want to get SomeModels that have latest RelatedModel (hasMany) matchin...