i am trying to do something very simple. Just create a user via an ajax post request
UserController.php
<?php namespace App\Http\Controllers;
use App\User;
class UserController extends Controller {
public function store( )
{
$user = new User;
$user->first_name= Input::get('first_name');
$user->last_name= Input::get('last_name');
$user->save();
}
public function edit()
{
return view('users.form');
}
}
but i get an error message
Class 'App\Http\Controllers\App\Input' not found
anyone?
I'm guessing you have to add use App\Input
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community