class UserController extends Controller
{
/**
* Store a new user.
*
* @param Request $request
* @return Response
*/
public function store(Request $request)
{
$name = $request->input('employeename');
return view('');
}
}
For more information read this article
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community