I have this error on my AJAX request, please refer below. Deprecated: Automatically populating $HTTP...
First I have this 'User' model <?php namespace App; use Illuminate\Auth\Authenticata...
I have this eloquent model query public function getemployee(){ $id = $_POST['id'];...
in my head tag, I declared this <meta name="csrf-token" content="{{ csrf_token...
this is my test ajax in laravel 5 (refer below) $("#try").click(function(){ va...
I instead use this $employees = mot_users::where("branch_no", $id) ->select(array('...
im trying to get the column "user_no", "firstname", "lastname"
how about if post and not get? like Route::post('employees',[ 'as' => 'employees/', 'uses' =&...
my json post request has a data key named "id", now how im going to pass it from routes to...
I dont want to use a form, I want to directly send a post request and retrieve the response directly...
The Laravel portal for problem solving, knowledge sharing and community building.
The community