laravel-3 Questions
4
Solved
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 a...
2
Solved
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 ...
Precentor asked 26/1, 2013 at 19:3
3
Solved
By default, Laravel's raw query methods return results as arrays of stdClass objects:
Array
(
[0] => stdClass Object
(
[id] => 1
[username] => admin
[password] => admin123
[email...
1
Solved
I'm trying to use route filters in laravel to check whether a specific user has an access to a page:
Route::filter('check_roles', function()
{
$current_url = URI::current();
$access = 0;
$nav =...
2
Solved
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...
4
Solved
My setup currently looks like this
application/controllers/register.php
class register_Controller extends Base_Controller
{
public $restful = true;
public function get_index()
{
return View::...
Keirakeiser asked 20/8, 2012 at 22:4
2
Solved
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 th...
1
Solved
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. Comi...
© 2022 - 2024 — McMap. All rights reserved.