Why isn't there a link to this forum, laravel.io/forum on the main laravel site any longer?
Say you want to edit a record and post the form using jquery. A prerequisite for this: You should al...
For those asking about jquery ajax: Here I am editing a pet, and looking up the petowner and filling...
I really wish some folks would do a search before they asked the question, some questions have been...
The docs show: <?php namespace App\Http\Controllers; use Auth; use Illuminate\Routing\Controller...
return View::make('owner/pownerlist')->with('data', $data['owners'])->with('data2', $data['ose...
What I do: if(isset($_REQUEST['t1'])) { $t1 = $_REQUEST['t1']; }...
I'm no expert, but have done sites. All these use core pdo in the background. One that I also have...
You said: Route::group(array('before' => 'auth'), function(){ Route::get('owners', array('uses'...
<?php Route::get('/', function() { return View::make('hello'); }); Route::get('users', functio...
The Laravel portal for problem solving, knowledge sharing and community building.