Laravel 3 is the current version of the open-source framework for PHP web development created by Taylor Otwell. Laravel helps you create applications using simple, expressive syntax.
14
votes
3answers
2k views
Unable to Get Eloquent to Automatically Create Joins
Apologies in advance if the answer to my question is obvious. I have done my due diligence in researching this topic before I posted here.
Most of my framework experience comes from using ...
7
votes
3answers
8k views
Templating in Laravel
I'm trying to get my default template working with Laravel. I'm coming from Codeigniter and Phil Sturgeon's template system so I'm trying to do it in a similar way. Can anyone help me with what I'm ...
5
votes
2answers
4k views
developing Laravel 3 and laravel 4
Does application build on Laravel 3 work on Laravel 4?
In few days ago I found Laravel and now I try to learn it. Am I losing time learning Laravel 3 when Laravel 4 is coming? Is this a same with ...
4
votes
1answer
619 views
Laravel Model Eager loading and ordering
I'm new to Laravel and thought it be cool to purchase the Codehappy ebook by Dayle Rees.
I just finished the blog tutorial and thought a bit on how he retrieved the posts from the Post model. Coming ...
3
votes
2answers
880 views
Where can I get a complete list of Laravel events (fired by the core libaries)?
I want to know what events are fired by Laravel core libraries. I want to get the complete list, such as laravel.query and laravel.done.
There are four events listed at the official docs, but I think ...
3
votes
2answers
2k views
Fatal Error While Running Artisan (Laravel) on Command Line
I am experiencing a fatal error while using artisan on the (fantastic) Laravel PHP framework.
I recently downloaded v3.2.1 of Laravel, and I tried running the following command line from within the ...
3
votes
1answer
179 views
How to list out all items in a nested table in Laravel
I am using Laravel's Eloquent ORM and I'm having trouble eager loading items for display.
Here is the scenario:
Users follow Blogs
Blogs have Posts
I have a database table named Relationships, ...
2
votes
3answers
1k views
Artisan: Could not find driver
I'm using Laravel last version: 3.2.1.
When I run this on terminal:
php artisa migration:install
I have this error:
could not find driver
I made some searches on Google and on Laravel's Forum, ...
2
votes
2answers
180 views
Laravel 3 HTTP and HTTPS routes
I have the following code:
Route::get('/', function()
{
return 'non secure page';
});
Route::get('/', array('https' => true, function()
{
return 'secure page';
}));
What I ...
2
votes
2answers
172 views
Laravel relationship problems
I've got 4 tables:
My relationships should work like this:
Items can only have one size, color and category.
This should be working but it's really not. The query generated returns wrong results.
...
2
votes
1answer
152 views
Eloquent query builder - hasOne error
this is driving me nuts. I have 2 tables, explanations and transactions.
in the models folder i have transaction.php and explanation.php.
transactions.php
<?php
class Transaction extends ...
2
votes
1answer
228 views
Laravel : Login user without password
I am new to Laravel and it looks like a nice PHP framework. Going through the guide and various tutorials, I know how to login a user using the Auth class. However the Auth class requires a username ...
2
votes
1answer
39 views
Laravel Controller Routes with Parameters
I have a Laravel 3 application that has several REST-ful controllers.
The controllers that take no parameters (e.g. a controller that handles the URL /api/books) works fine, but when I try and ...
2
votes
1answer
1k views
Laravel custom validation
--- Custom validation class (application/libraries/validator.php) ---
class Validator extends Laravel\Validator {
public function validate_passwdU($attribute, $value, $parameters){
...
2
votes
1answer
1k views
getting 500 internal server error in laravel
I am new to laravel. I am trying to configure laravel accoring to tutorial https://github.com/jasonlewis/laravel-blog/wiki/Creating-a-simple-blog-in-Laravel-3. I have created admin folder but when I ...
1
vote
4answers
2k views
PHP Laravel Routing Issue
My setup currently looks like this
application/controllers/register.php
class register_Controller extends Base_Controller
{
public $restful = true;
public function get_index()
{
...
1
vote
1answer
2k views
Laravel eloquent - One to many relationships
I have just got started with laravel v3 and am trying to wrap my head around eloquent's One-To-Many relationships by creating a blog, I have posts that have a many to one relationship with categories ...
1
vote
1answer
172 views
Laravel - Error rendering views during deployment using blade syntax
I'm getting this error:
Message:
View [partials.headerHome] doesn't exist.
Location:
/home/user/public/site.com/laravel/view.php on line 170
Which is being caused by this blade templating include
...
1
vote
4answers
133 views
How can I get the columns of both tables in a laravel eloquent model one-to-many?
Using this simple example I can get the columns in table "comments" but I can't get the columns in table "post". I know I can use "Fluent join" but is it posible in Eloquente? Thanks!
class Post ...
1
vote
1answer
86 views
Laravel Session Array Values
I've just started to test out Laravel. I'm using a form with some fields and trying to validate the inputs using Laravel's built-in validator class.
$input = Input::all();
$rules = array(
...
1
vote
1answer
97 views
How to call one javascript asset only in laravel?
In my base controller, I added two asset inside:
Asset::script('jquery', 'js/jquery-2.0.0.min.js');
Asset::script('test', 'js/test.js');
But when I called : Asset::script, all these two ...
1
vote
2answers
464 views
Protecting all admin/ routes with auth in Laravel
I am brand new to laravel and am setting up admin panel authorization on my first application. The way I have my files setup currently setup is:
controllers/
admin/
dashboard.php
...
1
vote
1answer
933 views
Laravel (3) Pagination Sorting & Filtering
I have a list of all the "servers" in my "servers" table returned in my view with pagination. I have been struggling to figure out how to get sorting (asc & desc if possible) and filtering ...
1
vote
1answer
48 views
laravel how to query rows by column in eloquent
In Laravel, I can get the rows from selected column of mysql by Larave query
$data = DB::query('select engagements from csv2');
however I wonder how can i write this using eloquent?
1
vote
1answer
60 views
Laravel: Use complex condition in JOIN with Fluent
For reasons of a complex schema & a library that requires either Fluent or Eloquent to be used (not just raw DB::query() ), I need to create:
LEFT JOIN `camp_to_cabin`
ON ...
1
vote
1answer
250 views
Laravel redirect with no cache header
I'm using Laravel 3 and it's not obvious how to set headers in any way other than through response::make().
I am doing a redirect like this:
return Redirect::to('admin/check');
But would like to ...
1
vote
4answers
782 views
How to set env with laravel artisan to have two different database connections (local/remote)?
I looking for setup a multi-environment project using Laravel3 but I dont understand the command to set the environment.
I see here: http://laravel.com/docs/artisan/commands
The command is:
php ...
1
vote
1answer
300 views
Laravel 3: Run migrations on production server / in .php file
I have been working with Laravel 3 on my local server. I have been using terminal and Artisan to perform my migrations.
I want to install my site on my production server, but I want to create a sort ...
1
vote
2answers
112 views
How to apply conditions to a with relationship in laravel 3?
I have a pair of objects in laravel, pages and contents.
I have setup a relationship function, and include, which includes contents based on page_id.
I want to apply other conditions such as where ...
1
vote
4answers
1k views
How to retrieve a result set from a raw query as an array instead of an object in Laravel 3 [closed]
By default, Laravel's raw query methods return results as arrays of stdClass objects:
Array
(
[0] => stdClass Object
(
[id] => 1
[username] => admin
...
1
vote
2answers
136 views
Admin Routes (Nested Controllers or Bundles)
I'm studying the Laravel 3, 1 week ago, but didn't understand everything about the routes.
My main question is: how to create administrative routes?
In the video lessons from Jeffrey Way (Tuts ...
1
vote
1answer
60 views
How can I reach base.php functions via my view files?
I pass an array/object from my database to view file like this:
View::make('home.announcements')
->with('announcements', Announcements::all());
When it is passed to the view file, it ...
1
vote
1answer
110 views
Adding a DATETIME column via a migration? Should I use macros?
In Laravel 4 there's a dateTime() function that helps in creating these columns. But in Schema\Table in Laravel 3, I only see a date() function, which is:
public function date($name)
{
return ...
1
vote
1answer
152 views
Laravel: How to redirect a request to controller function and use View::make at the same time?
**Route**
Route::get('admin', function()
{
return View::make('theme-admin.main');
});
**Controller**
class Admin_Controller extends Base_Controller {
public function action_index()
{
echo ...
1
vote
1answer
75 views
Laravel Support Class
Is laravel 3 have classes specially for handling Email, FTP, File upload, ZIP File, Captcha, Web service?
Or should be made its own class for the function?
1
vote
1answer
73 views
How can I reuse some laravel code?
I am developing web application using the laravel. I would like to 'package' some of the functions, which is re-usable. For example, I got a UserController, with database setup, and view, etc. The ...
1
vote
1answer
351 views
How to pass variables to another controller in Laravel
I have a product controller and a header controller. When loading the product controller, I use Route::forward() to load my header controller.
return View::make('frontend.catalogue.product.view')
...
1
vote
3answers
113 views
Should I include underscore in session cookie name?
I'm curious if there is anyone using Laravel since version 3 running into problems setting cookies in various version of IE when there is an underscore in the cookie name.
I came across this problem ...
1
vote
1answer
363 views
Laravel Eager Loading missing relationships when chained with first()/all()
Using L3 the following works fine :
$r = Site::with('services')->get()
That returns exactly what I'd expect. An array of Site objects, with the services relationship all neatly populated.
...
1
vote
0answers
121 views
Breakpoints not hit with xdebug, PhpStorm and Laravel 3 / mod_rewrite
I'm pretty desperate and running out of ideas:
I've configured xdebug and PhpStorm for a Laravel 3 project. Running the project locally on Mac OS X Apache, so PhpStorm and the web application run on ...
1
vote
1answer
227 views
Laravel Migrations - Table Prefix Issue
I'm building a dummy site to test Laravel 3.x.
I'm creating my site migrations right now. Everything was doing just fine until the following error showed up:
SQLSTATE[42s02]: Base table or view not ...
1
vote
1answer
96 views
Eloquent best practice for key/value pair type table
My application is a CMS intended for websites for businesses. I have a table called business_info that looks like this:
id | field | value
-----------------------------------------
1 | ...
1
vote
1answer
109 views
create temporary table using laravel schema builder
I was wondering if there's any way to create temporary table using the laravel's schema builder. I'm using laravel 3.2
thanks in advance.
1
vote
2answers
195 views
Laravel one to many relationships
I'm building an app in Laravel in which Users have a Role.
I've set up the User model with return $this->belongs_to('Role') and the Role model with return $this->has_many('User') and the users ...
1
vote
1answer
87 views
Is there any reason why a urlencoded string would throw a 404 error?
I'm trying to pass two parameters, one of which is an email address.
routes (also tried (:any))
Route::any(
'user/confirm_request/(:any?)/(:any?)', array(
...
1
vote
1answer
261 views
Laravel 3 eloquent many-to-many relationship
I have a Post model and a Tag model into a many-to-many relationship.
When I get the posts and all tags the post have I use this and it works just fine :
$posts = Post::with(array('tags'))
...
0
votes
2answers
416 views
Laravel Section not appear
I'll follow some tutorials about Laravel 3, and know, I have a problem, with one:
@section('post_navigation')
@if(Auth::check())
@include('plugins.loggedin_postnav')
@endif
@endsection
Why this ...
0
votes
3answers
226 views
Laravel - How to NOT use a layout
I'm using laravel with controllers layout. But there are some parts of my app where I don't want to use a layout (for example, when returning data to the payment gateway request, for wich I send XML ...
0
votes
2answers
24 views
Laravel3 Eloquent: Query for attribute in Many-To-Many Relation
This Problem blows my mind at the moment:
I have the following relation:
Groups --> Intermediate Many-To-Many Table <-- Cities (Every Group can have multiple Cities assigned)
Now I want to get ...
0
votes
3answers
141 views
Upload laravel to web hosting
I was confused when I want to upload all applications using the framework laravel. In the hosting I want to access directly :
www.mydomain.com
(without /public)
Please help me

