Laravel 3 is the outdated version of the open-source framework for PHP web development created by Taylor Otwell. Laravel helps you create applications using simple, expressive syntax.
Questions tagged [laravel-3]
392 questions
1
vote
1 answer
Passing parameters form link_to_action to controller in laravel 4
I am working with laravel 4 and I have to create links that invoke the methods of the controller passing data to the controller.
I chose to use the link_to_action, but failed to work.
This is the my HTML…

sircamp
- 107
- 2
- 10
1
vote
1 answer
Laravel 3, mysql or redis down shows blank screen rather than redirecting to 500 error screen
I'm testing my app to make sure in production it handles errors properly, and one such test is if the mysql or redis services it uses are down.
I'm looking for it to show the 500 error page, but currently its showing a blank page.
I haven't tested…

stilliard
- 762
- 8
- 27
1
vote
1 answer
Nginx path component load a subdomain, sibling projects at Root Folder (Drupal and Laravel)
I've tried already several ways that I've found over the internet but I still didn't manage to work.
What I want is, i have a server configuration for the url:
www.domain.com where I have installed and configured a Drupal website.
I also have a…

Gabriel Passarelli
- 11
- 3
1
vote
2 answers
Laravel 3 paginate not formatted correctly with Bootstrap 3
I am trying to paginate data from a database using laravel. My code is as follows:
echo "";
$orders=DB::table('customers')->paginate(7);
foreach ($orders->results as $order):
…