Generally, you can do the common flow of a framework
- The view form is submitted, the data is processed by the controller, and then passed to create a model.
A basic example of this can be seen as follows:
View
{{ Form::open(['id' => 'meu-formulario']) }}
{{ Form::text('nome_produto') }}
{{ Form::submit('Enviar') }}
{{ Form::close() }}
Controller
public function postCadastrarProduto()
{
$input = Input::only('nome_produto');
Produto::create($input);
}
Model
class Produto extends Eloquent
{
protected $table = 'produtos';
protected $fillable = ['nome_produto'];
}
If you want to do ajax requests, you can do so:
View
The same as before
Javascript
$.ajax({
url: '/produtos/ajax-cadastrar-produto',
type: 'POST',
data: {nome_produto: $('#nome-produto').val()},
success: function (response) {
if (response.error) {
return alert(response.error);
}
return alert('deu tudo certo');
}
});
controller
// Se der erro, retornará um json com o índice error com alguma mensagem
public function postAjaxCadastrarProduto()
{
$input = Input::only('nome_produto');
Produto::create($input);
return Response::json(['error' => false]);
}