This is just a random list of notes, as I dig into Laravel 4. If you have any feedback/solutions, please leave a comment. I'll be compiling everything for an article on Nettuts+, when the framework is officially in Beta. This will be updated over the course of the week.
-
Running
composer dump-autoload
after every new controller is a pain. Can this not be automated throughartisan controller:make ControllerName
? -
Seems that some of the View HTML helpers are missing. No
HTML::script()
. -
Route::resource('tasks', 'TasksController')
doesn't seem to create named routes. This is a big deal, if not. What's the solution?