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

Piece of modular code laravel where to put [Laravel, PHP]

I have a tiny piece of code on my masterpage in laravel but it is a bit out of place, now I am wondering what is the best place to store this bit of code? It does need to run on every single page ...
0
votes
0answers
4 views

Laravel 3 no route working on Aruba

I've developed a small app with Laravel 3. Locally (MAMP) it works perfectly, but when I uploaded it on my server (hosted by Aruba) and imported the database, I got the home page display correctly ...
0
votes
0answers
13 views

Using auth class within laravel folder

So I want to have user profiles on my website and check if they are online. If their activity has been more than 5 minutes ago they will be set to offline. I'm using the laravel session database for ...
1
vote
2answers
41 views

Laravel. How do i write a fluent query for full text search?

I need to write a fluent query for full text search in Laravel 3.0. The search query goes like this SELECT * FROM posts WHERE MATCH (tags) AGAINST ('Lorem Ipsum Dolor Sit Amet'); I had been ...
0
votes
1answer
23 views

Can someone explain session table laravel

Ok so I want to check if my users are online or not, I think a good way of doing this is using the sessions table that laravel provides. I'm a newbie though so can anybody first of all explain to me ...
0
votes
2answers
36 views

Laravel validation attributes “nice names”

I'm trying to use the validation attributes in "language > {language} > validation.php", to replace the :attribute name (input name) for a proper to read name (example: first_name > First name) . It ...
0
votes
0answers
15 views

Eager loading laravel 3 deep relationship

I got a model City related with State and so with Country. When call a model realted with city a got the city but state return null. my query Agent::with(array('city','city.state'))->find($id); ...
0
votes
4answers
62 views

Laravel wrong public path file upload

I've deployed laravel with this guide. http://juniorgrossi.com/deploying-laravel-applications-on-a-shared-host/ On my webserver I have a public_html file now containing all my publicly accesable ...
0
votes
1answer
78 views

How to add functions in Bootstrap modal - Laravel

I'm currently developing a system with Laravel framework. Though, I'm not very familiar with MVC architecture yet. When I'm developing the system, I come across a problem which relates with this ...
0
votes
1answer
48 views

How to: add custom format for logging in Laravel 3?

I am using Laravel 3.2.13, I don't want to show errors to my users so I hide them and set: /config/error.php 'log' => true The log is working but it is not very readable, I would like to add ...
0
votes
1answer
28 views

php imagejpeg path in laravel broken

my imagejpeg function is failing on my remote website, works fine locally. This is the code I'm using at the moment wich works fine locally. imagejpeg($dst_r, path('public') . 'thumbnails/' . ...
0
votes
1answer
21 views

how to use fireAnbu in laravel 3?

I've installed the bundle fireAnbu in my local laravel 3 app, but I can't figure out how to use it! (feeling silly) I've got 'fireanbu' => array('auto' => true), in bundles.php and 'profiler' ...
0
votes
0answers
24 views

unable to create controllers/view for publications

I have a simple site that is using controller actions for routing. If I create a controller/view combo for 'publications' or 'publication', I get an error. However, if I throw something in front of ...
0
votes
1answer
39 views

Laravel role based page access - Trying to get property of non-object - Auth::user()

Still very new to Laravel 3 and working through some issues. I'm trying to set up a role based access to page. Users are currently able to log in and that part works well but I want to restrict ...
1
vote
1answer
43 views

Laravel 3: Having difficulty getting my head wrapped around the `has_one()` relationship

Goal: My goal is to be able to call $entity->legalName()->first() and get the entities legal name. Models: ##### Entity ##### namespace Entity\Eloquent; class Entity extends \Eloquent{ ...

1 2 3 4 5 14
15 30 50 per page