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
505 views

Getting selected values from a multiple select form in Laravel

For generating a drop-down list with an item selected by default, the following is done: echo Form::select('size', array('L' => 'Large', 'M' => 'Medium', 'S' => 'Small'), 'S'); So I ...
0
votes
1answer
106 views

Cannot install bundles behind proxy with authentication in Laravel

I am not able to install any bundles because in my college there is a proxy with authentication. I have been through all questions here on SO regarding this, but they are not helping me in any manner. ...
0
votes
1answer
105 views

Laravel css/js gives 404 but the files exist

I'm working in a admin bundle but the css/js is not working. http://d.pr/i/UJHo From the print, bootstrap js/css came from external domain, I tried to call a local bundle file but I got the error. My ...
0
votes
1answer
61 views

special characters laravel routing

I was trying to route to a controller. It works fine everytime, but when there is a (&) in the url, it stops working. I searched on the net and found out (:all) can be used. It worked but when the ...
0
votes
1answer
100 views

Laravel “working with models” & my DB tables

I have several tables in my database. Blogs, Users, Posts, Tags are the main ones. Also I have linking tables: User_blogs, Blog_posts & Post_tags. My question is how to use Laravel's classes and ...
1
vote
1answer
848 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 ...
0
votes
0answers
72 views

Authentication Protect and Mount resque-web in Laravel 3

I'm using Laravel 3 together with php-resque and resque-web. Problem: resque-web can be accessed by anyone who points their browser to http://domain.com:5678. Is there a way for Laravel/PHP to ...
0
votes
1answer
105 views

Laravel Eloquent outputs c

I'm using Laravel's Eloquent, most of the times without any problems. But now i'm running in to a problem and can't seem to fix it. Google doesn't come with a solution... $global_data['credentials'] ...
0
votes
1answer
428 views

Class not found with Laravel 3 and Composer [closed]

I am attempting to use the php-resque composer package via artisan. I believe Laravel is v3.2.7. When running the command php artisan queue I get the error: Error PHP Fatal error: Class 'Resque' ...
0
votes
1answer
92 views

Loading PSR-0 incompatible libraries in Laravel 3

I need to use an old library in Laravel which is not PSR-0 compliant. It consists of several files and directories with a lot of "require", "include" and "require_once" stuff inside. So, I tried to ...
0
votes
1answer
254 views

Laravel Framework: syntax error, unexpected 'function' (T_FUNCTION) [closed]

I'm trying to include a Macro in a fresh Laravel3 framework installation, I've got PHP 5.4 (phpinfo confirms this). I originally suspected it was an issue with closures not being support on 5.3.17, so ...
0
votes
2answers
155 views

How do I troubleshoot routes in Laravel 3? (using the scaffold bundle)

Just starting with Laravel. I've installed it on my wamp server and setup a virtual host in apache. The standard home controller works fine. I've installed the scaffold bundle and generated a blog ...
0
votes
1answer
340 views

Laravel Eloquent one-to-many relationship

I am having real problems getting Laravel's Eloquent ORM to return data for a relationship. My migrations (database schema): Schema::table('users', function($table) { $table->engine = ...
0
votes
2answers
287 views

Laravel Eloquent: Name attributes and db rows differently

I've just started to create an application using the Laravel framework for the first time. Eloquent seems to be a very powerful and code-saving tool, but I can't figure out how to use different ...
0
votes
1answer
136 views

Laravel 3 - 404 event listener not being picked up from controllers

I'm trying to use the default event listener in Laravel for errors (i.e. 404). I have the following code: Event::listen('404', function() { return Controller::call('errors@404'); }); This ...
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
158 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
1answer
84 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( ...
0
votes
2answers
125 views

Laravel v3.2.13-5 blade templating doesn't work

I'm new at laravel but I found something very strange. In my blade template I wrote: @if( $appModule == 'someting' ) Something @elseif($appModule == 'somethingelse') SomethingElse @else ...
0
votes
1answer
188 views

Laravel 3 Many to Many relationship not binding query

I'm working through the documentation of many-to-many relationships and have run into a brick wall of sorts. I'm trying to use an existing database schema and wrap Laravel/Eloquent around it, which ...
0
votes
1answer
230 views

Eloquent yelling about Undefined index : username

I have this situation, I changed in auth.php the 'username' from username to emailso I have 'username' => 'email' I don't have any username column anymore, but when trying to login, eloquent ...
0
votes
1answer
273 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
2answers
294 views

Array to String to Array conversion

I have an array that I'm storing as a string in a database to make it easier to retrieve (it's refreshed with new data every 15-30minutes via cron). 'player_list' -> 'Bob,Dave,Jane,Gordy' ...
0
votes
2answers
455 views

How upload multiple files laravel 3?

i want to upload multiple files to server with laravel 3 but how? View code: {{ Form::open_for_files() }} {{ Form::label('imgs', 'Image') }} <input name="imgs[]" type="file" multiple="" ...
0
votes
1answer
70 views

How to create a new cache driver with Laravel 3?

I've created a new file in application/libraries/fnmemcache.php, with: namespace Laravel\Cache\Drivers; class FNMemcache extends Sectionable { // ... } When I set the "fnmemcache" driver in the ...
2
votes
1answer
226 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
148 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 ...
0
votes
1answer
376 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 ...
0
votes
1answer
206 views

Laravel Unhandled Exception Undefined index: argv on core.php line 218 [duplicate]

I like to think my Google-fu skills are fairly decent, but I cannot find a solution to this particular issue. I am running laravel on my dev box on my local server. I am running nginx, PHP Version ...
0
votes
3answers
284 views

Laravel Many-to-Many Relationship

I have two models User and Role i have turned off timestamps for both of them like so public static $timestamps=false and also i have removed the created_at and updated_at columns from both the ...
1
vote
4answers
127 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
votes
1answer
51 views

Using restful in which application?

How can task accomplished with the verb restful in Laravel, What is basic function ?
1
vote
1answer
250 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
1answer
218 views

Laravel 3 Eloquent ORM usage

I have the following code which works but doesn't seem to follow the laravel eloquent way: Article::left_join('images', 'articles.id', '=', 'images.article_id') ...
0
votes
1answer
244 views

Moving Laravel outside of docroot gives me problems with php's chdir() and path('sys')

I've been using Laravel 3 on a live website for a while, and decided to move the app to outside of docroot, delete the public_html folder, and symlink the public folder to the public_html one. I ...
0
votes
1answer
173 views

Laravel - Working with multiple records, how do I pull the data I need?

WARNING:: LARAVEL SUPER-BEGINNER, BE GENTLE:: In my controller: public function get_index(){ $lease_rates = DB::table('lease_rates'); $this->layout->nest('content','admin.lease_rates', ...
0
votes
2answers
494 views

Laravel extending class

Are there any other steps required to extend a class in Laravel 3? I created application/libraries/response.php: class Response extends Laravel\Response { public static function json($data, ...
0
votes
3answers
469 views

Laravel 3 Schema Table Column Collation

I'm learning laravel, and I'm stuck on a simple process. I want the tables to be generated as UTF-8 but varchar and text fields are like latin-1. Schema section in guide did not help at all. I found ...
0
votes
1answer
427 views

Laravel 3: with_input() not saving input

I have a Laravel form that gets passed through some validation. Obviously, if the validation fails, I'd like the user to be redirected to form and alerted of their mistake. Also, because the form is ...
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 ...
0
votes
2answers
239 views

How to choose which PHPUnit tests to run in Laravel 3.x?

I'm using php artisan test to execute my tests, but now I'm having too many of them and I'd like to be able to choose which one to run. I am familiar with test groups in PHPUnit, I just don't know how ...
0
votes
1answer
189 views

Using Laravel bundle with CodeIgniter

I want to use Laravel Bootstrapper bundle http://bundles.laravel.com/bundle/bootstrapper with my CodeIgniter application. How can i utilize autoloader functionality to use Bootstrapper bundle code in ...
1
vote
4answers
754 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
290 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 ...
0
votes
1answer
78 views

Decrement function, decrement all the rows in the tables

Im using laravel v3.2.12-4, and I have an problem with the decrement function. Instead of update only one row, this method affects all the rows in the column. Im using Eloquent, and I have a ...
1
vote
2answers
110 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
1answer
357 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. ...
0
votes
1answer
288 views

mod_rewrite remove trailing slash not working in Laravel

I have the following code setup in my htaccess file for my Laravel 3 installation: # Removes trailing slashes (prevents SEO duplicate content issues) RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ...
0
votes
2answers
393 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 ...
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){ ...