Tagged Questions
0
votes
1answer
156 views
Laravel Before Filter in the Controller with arguments
I have some troubles with filters in my controller and there parameters. Maybe one of you can help me out. Thank you.
I have a controller similar to this one:
class Test extends Base_Controller
{
...
0
votes
1answer
119 views
Routing nested controllers using IoC for dependency injection in laravel 3
update: if i can achieve same result using a different approach, please enlighten me.
I'm using/learning laravel 3 while building my project. Before coding any page-content at all, I'm verifying ...
0
votes
1answer
287 views
Laravel routing to controller
I am trying to route multiple urls to the same controller function using part of those urls as parameters for a method within the controller. This is based on the routing functionality of the Laravel ...
0
votes
1answer
394 views
Base_Controller: Access current controller name in Laravel
I am trying to get the current controller name in my base controller in Laravel 3.2 but it returns null. Within my Home Controller there's no problem.
How can I get this value within my ...