Top "Laravel-3" questions

Laravel 3 is the outdated version of the open-source framework for PHP web development created by Taylor Otwell.

Templating in Laravel

I'm trying to get my default template working with Laravel. I'm coming from Codeigniter and Phil Sturgeon's template system so …

php laravel laravel-3
Using Distinct in Laravel Fluent

I have this join: Return DB::table('volunteer') ->join('volunteer_volunteer_category', 'volunteer_volunteer_category.volunteer_id', '=…

php laravel fluent laravel-3
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 …

php validation laravel laravel-3
Check for Session timeout in Laravel

I was just wondering if anyone knew how to check for session timeout in Laravel. You can check whether the …

php laravel laravel-3
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(…

php laravel laravel-3
Export whole table to CSV using laravel

I am new to laravel and having a tough time figuring out a way to export one table to csv. …

php csv export laravel-3 fputcsv
Laravel - Query "with"

I have a query where I need to get info from 2 tables. So I need to get invoices with the …

php laravel-3
Laravel - call_user_func_array() expects parameter 1 to be a valid callback

I'm getting this error: call_user_func_array() expects parameter 1 to be a valid callback, class 'Symfony\Component\HttpFoundation\LaravelRequest' …

php laravel facebook-apps laravel-3
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 …

php authentication laravel laravel-3
Laravel Blade using if condition inside foreach

here is my code .. @foreach (Session::get('show_my_data') as $key1 => $value1) <div class="sb_li"> &…

php laravel laravel-4 laravel-3 blade