Laravel 4 is the beta version of the open-source PHP web development framework created by Taylor Otwell. Laravel helps you create applications using simple, expressive syntax.

learn more… | top users | synonyms

1
vote
0answers
26 views

Laravel Event: how to fire and pass value to a listener after a controller method is called

In this case, we have 3 tables: tasks (task_id, task_title,task_type) managers (manager_id, manager_title, manager_type) assigners ( task_id, manager_id ) In TaskController.php, I have a store ...
0
votes
1answer
197 views

Laravel template not looping through array of views

Hoping this is some kind of silly oversight on my part, but I've had little luck finding information about this or other examples of similar usages of Laravel. I'm developing a Laravel 4 site whose ...
-1
votes
0answers
17 views

Password validation rules for Laravel 4's password reset method

I have set password validation rules in my user model that work for registering and logging in, but the PasswordBroker makes assumptions about the required validation and has hardcoded rules ...
0
votes
0answers
28 views

Detecting type of validation error in Laravel 4

I'm new to Laravel and the following works but it doesn't seem very 'Laravel' to me - I just need to detect which validation rule the message refers to (required,email,unique etc): @if ...
0
votes
0answers
10 views

One to Many relationship — Inserts 2 records into table

I have a one to many relationship: a Visitor has many Visits Inside the Visitor model I have public function visits() { return $this->hasMany('Visit'); } Inside the Visit model I have public ...
0
votes
1answer
23 views

Laravel Eloquent, return JSON with “belongsTo” object?

I have two models with a one-to-many relationship. class User extends ConfideUser { public function shouts() { return $this->hasMany('Shout'); } } class Shout extends ...
0
votes
1answer
33 views

Laravel 4: Auth:check() give different answer in different controlles

I have a Laravel 4 app that uses the Auth class. I have setup the db stuff and login, etc. Now I'm trying to check if the user is logged in or not using the Auth::check() method. For some reason when ...
0
votes
1answer
41 views

How to use Redactor image upload in laravel 4?

I am trying to use Redactor with Laravel4. I can succesfully edit my textarea but I cant get to work with image uploads. When I try to upload a file I get 500 error and In developer tools , I can ...
0
votes
1answer
25 views

Laravel BelongsToMany how to retrieve model values based on conditions

Now I have 3 tables shirt id type color id color color_shirt id color_id shirt_id Shirt model public function colors() { return $this->belongsToMany('Color'); } Shirt ...
0
votes
0answers
52 views

Laravel 4 always returns HTTP status code 200

I have below code in error.php, which is triggered using App::abort(404, $error) in my controller. Still my response status code is 200(ok). I tried with various error codes like 400, 403 // ...
0
votes
0answers
43 views

Laravel 4 Wildcard Routing to Different Controllers

Realizing I'm going to take a beating for this, I have several questions about "best practices" when constructing a laravel route. Do laravel routes run "first come first serve" from top to bottom? ...
0
votes
2answers
51 views

Eloquent ORM: Obtain a object, not an array of objects

I have this statement in Laravel 4: $prepayment = Prepayment::where('hash', '=', $custom)->take(1)->get(); But this return an array of objects, and I want only one object, because there are ...
0
votes
2answers
52 views

Laravel 4: How to remove `limit 1` restriction from Find() in Eloquent?

I want to retrieve all the tasks details (task_title etc) belonging to one author_id (author2 in this case). Tests table author_id task_id author2 task_1 author2 task_2 Tasks table ...
0
votes
0answers
31 views

GitHub, Linux Server and Ownership Issues

I've got a private Git repo on GitHub and I have setup SSH connections between my server and github.com. I can pull my app from GitHub successfully on to the server but when I visit my app URL I get a ...
0
votes
2answers
43 views

Laravel Eloquent ORM - Why do I need to call the 'parent model' before I'm able to access it's relations?

I think I might be missing a concept here so feel free to tell me what I'm doing is wrong and point me in a better direction. I've a simple couple of models that look like this: class Customer ...
0
votes
1answer
60 views

Laravel 4 TDD Test faling

I All, I am trying really had to get in proper TDD but it is not smooth sailing. This test keeps on failing and I can't figure out how to make it pass. #>phpunit PHPUnit 3.7.20 by Sebastian ...
0
votes
1answer
34 views

Check for file existence if Laravel's Blade template

I have a simple problem - how can I check if file exists in Laravel's Blade template? I tried @if(file_exists('/covers/1.jpg')) ok @endif But it doesn't work (covers directory is in /public). I ...
0
votes
2answers
64 views

Regex for empty route laravel 4

I need to make a route to work on / and /today routes. Tried in this way: Route::get('/{home}', function() { return View::make(...); })->where('home', '$^|null||today'); It works ...
0
votes
1answer
97 views

Laravel 4 hasMany does not work

I have an Eloquent model named Auction and it has cars in a one-to-many relationship. This is the function for retrieving the cars: public function cars() { return $this->hasMany('Car'); } ...
0
votes
1answer
83 views

Laravel 4: Caching JSON Response

I'm totaly new to Laravel, and i need to cache a JSON response every 60 min. Saw that Laravel offers lots of caching modules: File, Redis, Memcached, APC.. Which one wuold suite best for my need? I've ...
0
votes
0answers
28 views

Fetch data from two joined tables using laravel eloquent

I have two tables, modules (id,module_name) and sub_modules(id,module_id,sub_module_name). I want to display a table like this structure: Sub Module ID | Module Name | Sub Module Name Modules.php ...
0
votes
1answer
38 views

How to install Laravel 4 to a web host subfolder without publicly exposing /app/ folder?

I was wondering if any of you know of a way to install Laravel 4 in a web host SUBDIRECTORY / subfolder while not exposing the /app/ folder and other sensible files to the publicly accesible part of ...
0
votes
1answer
47 views

Laravel 4 - Multiple templates in a view

My goal is to use a big master view with several nested views. What I tried (careful : this code doesn't work, it only makes the first view) master.blade.php <div id="application" ...
0
votes
1answer
27 views

Laravel 4 Eloquent and Select element

i use $catlist = Categories::where('type','=',$content_type)->get(array('id','name'))- >toArray(); to get result from Category table and i want to populate a "select" element. but the ...
0
votes
2answers
83 views

laravel 4 authentication check always returns false

I'm making an application in laravel 4 and I've run into a problem. So far I have tried to make an authentication system. I followed several tutorials but none of them seem to work. Possibly because ...
0
votes
1answer
44 views

Laravel 4 Eloquent 'hasMany': how to set the default lookup value rather than primay key

I want to retrieve all the comments under the post_id(post1) in page: //localhost/posts/post1/ table comments id:int[primary], comment:varchar, post_id:varchar, comment_id:varchar 1 ...
2
votes
2answers
103 views

Add new methods to a resource controller in Laravel 4

I want to know if it is possible to add new methods to a resource controller in Laravel 4 and how you do it. I know that this methods are the default ( index, create, store, edit, update, destroy ). ...
0
votes
2answers
52 views

Sentry2 user model extension

I'm using Sentry2 package in my laravel 4 application (http://docs.cartalyst.com/sentry-2/). I create a new User model that extends Sentry2 User Model: <?php namespace App\Models; use ...
0
votes
1answer
38 views

Laravel many-to-many-to-many relationship with Eloquent?

I want to have a many-to-many-to-many relationship in Eloquent. I have 3 tables Client Assets Products Each client can have many assets. Each asset can have many products. At the moment, they are ...
0
votes
1answer
156 views

User Authentication in Laravel 4

Having problems authenticating and logging in users in Laravel 4. My login form directs to this route. Route::post('login', function() { // get POST data $userdata = array( ...
0
votes
1answer
29 views

Laravel: Cannot retrieve an relation

It seems like Laravel 4 cannot get an relation when I use the ::where() syntax. So this is what I have: <?php // works fine $questions = Auth::user()->questions; // error $questions = ...
0
votes
1answer
45 views

Testing for relation between Eloquent objects (Laravel 4)

In Laravel 4, is there a method that allows you to test for a relationship between two Eloquent objects without knowing the type of relationship beforehand? For example, a user model would have a 1:1 ...
0
votes
1answer
67 views

Can't login users in Laravel 4

I try to create a login system in Laravel 4. For this, I use Auth build in it. First off, I didn't create a register page just yet, so I created a user inside my DB. For password, I used echo ...
0
votes
2answers
83 views

Where to keep additional functions in Laravel 4?

I want to use a couple of my own functions in Laravel, but I don't want to include them in each file that will be using it. I guess there must be some place to store those things and load them when ...
0
votes
2answers
52 views

Laravel 4 (Beta 5) Routing error

I decided to use a new framework to me for my new project so i started with Laravel! I'm starting to like it, had few problems but it sorted out. But now i'm having hard times with Routing! Using ...
0
votes
1answer
63 views

laravel 4 upload image form

I'm trying to make a form that allows uploading a file and store it in the public/upload folder of the application. my form is: <form action="/image/save" method="post"> <input name="image" ...
0
votes
1answer
83 views

Laravel 4 resource controller show($id) method problems

Does it have to be the 'id' column in database table which works fine for show($id), edit($id) method in controller? I want to replace $id with the value of 'post_id' column in database table, but it ...
0
votes
1answer
108 views

Laravel 4: how to write the correct nested controller for nested resource?

In Laravel 4, I wish to create a set of restful resources as follows: http://localhost/posts/1/comments http://localhost/posts/1/comments/1 http://localhost/posts/1/comments/1/edit ... So I ...
0
votes
1answer
53 views

@foreach loop in Laravel 4

Anyone see any reasons why this wouldn't work in laravel 4? I figured I would check here before posting on github. In the controller: return View::make('home.index') ->with('bcrumbs', ...
1
vote
1answer
40 views

how to make query with substr in eloquent (laravel 4)?

I have this query: select substr(id,1,4) as id from meteo.a2012 group by substr(id,1,4) I just want to take first 4 numbers to my id row, but I'm trying to do in eloquent, how I do? Thanks.
0
votes
2answers
60 views

How to pass an URL as a query string?

I'm trying to pass an url to a controller. http://something/index.php/api/http%3A%2F%2Fengadget.com I get 404 Not Found error. My route Route::any("/api/{url}", "ApiController@parse"); How do I ...
0
votes
1answer
110 views

Laravel 4: Building forms for models with eager loaded data

With laravel 4 you can bind to a model in your form. For example, the following code would bind a form to a Post. $post = Post::find(1); Form::model($post, [ 'action' => ...
0
votes
2answers
79 views

Laravel 4 Unit Testing: “headers already sent” error when injecting mocks using App::instance

I'm new to Laravel and the concept of the IoC. I was following the great tutorials over a Nettuts (http://net.tutsplus.com/tutorials/php/testing-laravel-controllers/) and was able to successful test ...
0
votes
1answer
56 views

Many to Many with eager loading in Laravel 4

I have this model: class Ownership extends Eloquent { protected $table = 'game_user'; public function games() { return $this->belongsToMany('Game'); } public function ...
0
votes
0answers
28 views

monologue retrieve logs programmatically with laravel 4

Simple question. Can i retrieve logs programmatically without inserting them into database with laravel 4? Something like: Log::get($date/$type/etc) or smth similar?
0
votes
0answers
73 views

Laravel Controller Layout testing

I'm trying to include unit-testing in a new Laravel app I'm building. Right now I'm want to test my OrderController. The index method of this controller looks like this: public function index() { ...
0
votes
1answer
36 views

Select Cascade Using jQuery and PHP in Laravel 4

I'm trying to populate a select box based on a previous select box value in Laravel 4. Here's what I have so far: My JS: var url = document.location.hostname + '/cream/public/list-contacts'; var ...
0
votes
2answers
34 views

Cannot run raw Query in Laravel 4

I need to get total count to show in my page. I can run this & loop through & get the total number DB::table('table1') ->select((DB::raw('MAX(score)'))) ->where('status', 1) ...
0
votes
2answers
45 views

How to increment a column using Eloquent Model in Laravel 4

I am not sure how to increment the value in a column using Eloquent Model in Laravel 4? This is what I currently have and I am not sure how correct is this. $visitor = ...
0
votes
1answer
65 views

How can I access query string parameters for requests I've manually dispatched in Laravel 4?

I'm writing a simple API, and building a simple web application on top of this API. Because I want to "consume my own API" directly, I first Googled and found this answer on StackOverflow which ...

1 2 3 4 5 8