मैं कुछ बहुत ही मूल चलाने की कोशिश कर रहा हूं। मैं CI के लिए उपयोग किया जाता हूं और अब लारवेल 4 सीख रहा हूं, और उनके डॉक्स इसे आसान नहीं बना रहे हैं! वैसे भी, मैं एक लॉगिन फ़ॉर्म बनाने की कोशिश कर रहा हूं और यह सुनिश्चित करना चाहता हूं कि डेटा अगले रूप में मुद्रित करके सफलतापूर्वक पोस्ट किया गया हो। मुझे यह अपवाद मिल रहा है:
Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException
और मेरा मेंबर कंट्रोलर: एफपी:
public function index()
{
if (Session::has('userToken'))
{
/*Retrieve data of user from DB using token & Load view*/
return View::make('members/profile');
}else{
return View::make('members/login');
}
}
public function validateCredentials()
{
if(Input::post())
{
$email = Input::post('email');
$password = Input::post('password');
return "Email: " . $email . " and Password: " . $password;
}else{
return View::make('members/login');
}
}
और मार्गों में है:
Route::get('/', function()
{
return View::make('hello');
});
Route::get('/members', 'MemberController@index');
Route::get('/validate', 'MemberController@validateCredentials');
और अंत में मेरा विचार login.php में यह फ़ॉर्म दिशा है:
<?php echo Form::open(array('action' => 'MemberController@validateCredentials')); ?>
किसी भी प्रकार की सहायता सराहनीय होगी।
php artisan dump-autoload
?
url
आपको त्रुटि मिल रही है?