Accessing package controllers in Laravel 4

laravel, laravel-4, php

Solution

The mistake was including the controllers path in the route. I had the following:

Route::get('/package', 'Vendor\Package\Controllers\HomeController@showWelcome');

The correct usage is:

Route::get('/package', 'Vendor\Package\HomeController@showWelcome');

With the namespace included in the controller:

namespace Vendor\Package;

Controller should extend illuminate:

\Illuminate\Routing\Controllers\Controller

Still can't use the package name (eg: Package::HomeController@showWelcome), but I can using the namespace. yay.

Problem solved.

Problem

I have created a package following the "Creating a Package" instructions in the Laravel 4 documentation. After creating the package I have created a "controllers" folder and a routes file. The new file structure is: ``` /src /Vendor /Package PackageServiceProvider.php /config /controllers /lang /migrations /views routes.php /tests /public ``` I added the routes file to the boot portion of the package service provider: ``` public function boot() { $this->package('vendor/package'); include __DIR__ . '/../../routes.php'; } ``` Then added a basic route to the routes file: ``` Route::get('/package', function() { return "Package route test"; }); ``` Visiting my application at the specified route (app.dev/package) returns the expected: ``` Package route test ``` Then adding a basic controller call to the route (using the default Laravel controller, "HomeController") works: ``` Route::get('/package', 'HomeController@showWelcome'); ``` I then followed this SO answer for setting up the controller for the package. I added the src/controllers folder to the composer classmap, then I dumped the autoloader and checked vendor/composer/autoload_classmap.php and found the class is successfully loaded by composer: ``` <?php // autoload_classmap.php generated by Composer $vendorDir = dirname(__DIR__); $baseDir = dirname($vendorDir); return array( 'HomeController' => $baseDir . '/src/controllers/HomeController.php', ); ``` Now I added the new package controller to the route using the namespace: ``` Route::get('/package', 'Vendor\Package\Controllers\HomeController@showWelcome'); ``` but this produces an error about not finding the class: ``` ReflectionException: Class Vendor\Package\Controllers\HomeController does not exist ``` I've also tried calling it using the package name: ``` Route::get('/package', 'Package::HomeController@showWelcome'); ``` which produces the same error: ``` ReflectionException: Class Vendor\Package\Controllers\HomeController does not exist ``` No matter what I try the package cannot access its own controller, which composer confirms is loaded (by viewing vendor/package/autoload_classmap.php). Any ideas? I'm not sure if the issue is composer not loading the class, I'm not sure where to start with debugging the problem. I've created another package and repeated the steps here and get the same problem. I can access the package views from both the package and the app, eg: ``` View::make('package::view'); ``` The problem seems to be between composer loading the controller and Laravel being able to access it.

Original source

Related problems