Brent Roose has written an excellent book. This time on his programming journey and the lessons learned along the way.
It’s not too long, I personally read it in one sitting, and liked it very much.
PHP
#[RouteParameter] Does Not Bind Your Model
Michael Dyrynda explains a subtle Laravel gotcha: #[RouteParameter] only reads the current route parameter value, it does not perform implicit model binding. Good reminder that the controller signature still matters when you expect a bound Read more…