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.

learn more… | top users | synonyms

0
votes
1answer
82 views

Laravel - Auto detecting Controllers

Pretty new to Laravel and I'm slightly confused to how routing works. In FuelPHP I'm used to using file structure to define routes. E.g. I have admin/clients/add and I would use a class of ...
2
votes
2answers
153 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. ...
0
votes
1answer
140 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
22 views

Laravel3: Eloquent/Fluent fails during UPDATE statement

$account = Account::where('account_id', '=', $account_id)->first(); $account->username = 'New_Username'; $account->password = 'Password'; $account->save(); SQLSTATE[42S22]: Column not ...
0
votes
2answers
45 views

Laravel3: How to check if there is a file uploaded

I have a page with a form where user can upload an image to replace his existing avatar. However, if the user submits forms without uploading an image, I will not update his avatar and user can keep ...
0
votes
1answer
109 views

Laravel3: Giving failsafe image paths with built-in functions of Laravel

background-image: url('home_assets/images/origami/parallax/01.png'); <img alt="" src="home_assets/images/origami/logo.png"> I worry about 404 issues if: I move my Laravel folder into a ...
0
votes
1answer
46 views

Laravel3: Variables that has to be set forever

<meta name="description" content="{{ $description }}" /> It is a variable stored in a custom.config.php. That file can be anywhere. (I'm new to Laravel) How can I ensure Laravel runs it each ...
1
vote
1answer
209 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 ...
0
votes
1answer
52 views

Laravel3: Do I need sanitization if I use Eloquent?

This approach; Route::get('admin/user/delete/(:any)', array('as' => 'username', 'uses' => 'admin@user_delete_process')); public function action_user_delete_process($username) { $result = ...
0
votes
1answer
31 views

Laravel3: How can I forward a string to a function?

I have something like this: Route::get('admin/user/modify', 'admin@user_modify'); But I should convert it to something like this: Route::get('admin/user/modify/(:string)', 'admin@user_modify (with ...
0
votes
3answers
69 views

Laravel3: Loading a content inside a content dynamically

I have a form. When user submits the form and gets error, I show it like this: Register Controller return View::make('theme-admin.user_add')->with('error_msg', validation->errors->first()); ...
0
votes
1answer
35 views

Laravel3: How can I forward post methods to action of controller?

Route::get('admin/user/add', function() { if (!Input::has('submit')) return View::make('theme-admin.user_add'); else Redirect::to('admin@user_add_process'); }); Normal GET ...
1
vote
1answer
93 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
138 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 ...
0
votes
1answer
35 views

How to define correct action parameter on forms?

Right now I have those. user_add.blade.php <form method="post" id="customForm" action="admin/user_add"> ... </form> routes.php Route::post('admin/user_add', 'admin@user_add'); ...
0
votes
2answers
28 views

How can I make content area change on different requests?

I have a template like this. <div class="content"> @yield('content') //this area should load different files on different URI's </div> If I load .com/register, it should load ...
1
vote
1answer
70 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?
0
votes
0answers
176 views

Laravel trying to make skinny controller

im newbie in php and in mvc design pattern, my first framework is CI then i move from CI(just used it for 1 project then found this amazing laravel) i have read some of the articles about skinny ...
0
votes
1answer
116 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
2answers
69 views

Laravel doesn't recognize “index” as the default action

When I go to http://example.com/clients , Laravel response 404 Error , but when I go to http://example.com/clients/index , Laravel render the right view and run the index action. My .htaccess file : ...
0
votes
3answers
143 views

How to make my own timestamp method in Laravel?

Typically, the Laravel platform have a $table->timestamps(); in migration..., it generate two datetime fields, But I would like to implement my own timestamps or, maybe call unix_timestamps(). I ...
0
votes
1answer
182 views

Eager Loading from the model in Laravel 4

In Laravel 3, one could do the following in the model (http://laravel.com/docs/database/eloquent#eager): class Book extends Eloquent { public $includes = array('author'); // this line ...
1
vote
2answers
407 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 ...
0
votes
2answers
93 views

Best way to handle dynamic amount of form fields in PHP?

I have a system where I need to list an arbitrary amount of employees with a textfield for each day of the week where an "hours worked" value can be entered. So I need to generate a table with a ...
0
votes
1answer
152 views

Trying to use laravel pagination breaks my controller/view

I'm trying to get Pagination working in Laravel. I've not used pagination before so am trying to use some examples from the docs and google results. I'm wondering if I need to turn 'pagination' on ...
0
votes
1answer
73 views

Use Laravel bundle inside model

I'm using Laravel 3 and want to use Sentry::user as an $include inside one of my models, but it won't let me. So far I have tried "Sentry::user" inside the $include which results in "ap$iw{u[]". I ...
1
vote
1answer
70 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 ...
0
votes
1answer
285 views

Class 'User' not found in Laravel

I keep getting Unhandled Exception Message: Class 'User' not found Location: C:\wamp\www\laravel\laravel\auth\drivers\eloquent.php on line 70 When I'm logging in a user. I don't think there's ...
0
votes
2answers
377 views

Laravel 3 - RESTful API

How do I create the Routes for a RESTful API in Laravel 3? I want to use GET, PUT, POST and DELETE in order to create an API. I want all Routes to be prefixed with /v1/ So, I can do this: ...
0
votes
1answer
52 views

In Laravels Eloquent/Fluent, is there a way to delete a row and everything connected to it through relationships?

Basically, it would be really nice to delete something and have it automatically search out and delete all of the rows and fields connected to it, rather than having to do all of that manually. For ...
0
votes
0answers
214 views

Laravel Eloquent ORM won't save or update a model that contains a datetime field

This is incredibly strange. Whenever I try to save or update a model that contains a datetime field, the model is not saved. Instead, a timestamp value of the datetime field I'm trying to update is ...
0
votes
2answers
118 views

Laravel 'One to Many' relationship seems to be working in reverse

I'm struggling with a One to Many relationship and Eloquent. I have Events (As in show events), and I have Locations. Each Event is tied to one location, but each Location might be used to host many ...
0
votes
2answers
91 views

laravel-3 core exception on new installation

I have a new installation of Laravel on a machine running ubuntu 12.04 LTS, Nginx, php-cgi, and Laravel v3.2.14 I am getting the following error. Unhandled Exception Message: Undefined index: argv ...
1
vote
1answer
104 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.
0
votes
1answer
55 views

How to set every row to the same value with Laravel's Eloquent/Fluent?

I need to update all of the rows in a database so that a particular field in all of them is equal to a single value. Here's an example. Let's say my database table is like so: id | data | ...
0
votes
1answer
38 views

What is the best wat to check if an authenticated user is also an instance of another model?

I am authenticating users with the normal auth eloquent driver. I want to also check if the User (after logged in) is also an instance of another model. I found out that he has an array with all of ...
1
vote
1answer
302 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') ...
0
votes
1answer
84 views

In Laravel, what folder should I put a non-public data.json file?

I have another system that will drop in a data.json file somewhere onto my Laravel site/folder structure. I want only Laravel to be able to be able to read the json file (i.e. a user can't see it by ...
1
vote
2answers
185 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 ...
0
votes
1answer
61 views

Get value from view

I have two table User & Article the relationship between tables are Model: class Article extends Eloquent { public static $table = 'article'; public function User() { return ...
0
votes
0answers
42 views

Laravel array of conditions

I'm using laravel version 3 and some of my ORM's share similar conditions such as deleted = 0. I have stored these in an array called standard conditions like so: $standard_conditions = array( ...
0
votes
0answers
316 views

Laravel 3: Class not found in namespace

This is the problem: I haven't be able to load a class from a namespace. I'm developing a restful app and I'm trying to follow the Entity/Service/Repository way to access and give format to the ...
0
votes
1answer
368 views

Laravel: Form validation string-length error messages cause exception

When trying to implement Laravel's length based validation 'password' => array( 'required', 'alpha_dash', 'Min:7' ) and outputting error messages in my view {{ ...
0
votes
1answer
144 views

“Unhandled Exception: Creating default object from empty value”

I'm trying to show a snippet of code and in the same time display comments that you can make to the snippets (I call the snippets code). But I'm having troubles to view the username of the user who ...
2
votes
2answers
167 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 ...
0
votes
2answers
86 views

Laravel 3 for each through a returned array using PDO::FETCH_ASSOC

I am using Laravel 3, I think it's awesome. OK, I set my DB config to return assoc arrays to help me out. My controller works fine, the problem I am having is: How do I pass the multiple arrays ...
0
votes
1answer
71 views

Laravel 3 access all transactions of one customer

Customers have many Accounts, and Accounts have many Transactions. I want to get all of the transactions from one customer..? $customer = Auth::user(); $statement = ...
0
votes
1answer
181 views

Laravel 3: Is there a way to create an Eloquent model for your many-to-many pivot table?

What I'm looking to do is add in a relation to my pivot table. I have a unique scenario where my pivot table needs it's own has_one relation on the roles table. Does anybody see a problem with ...
0
votes
1answer
154 views

Reorder Methods and Parameters in Laravel Routes

I'm building a REST API using controllers in Laravel 3, and I'd like to achieve the following structure: /api/controller/{param}/method/{optional param} Currently, I have individual routes set up ...
1
vote
1answer
233 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 ...