本文整理汇总了PHP中Pessoa::create方法的典型用法代码示例。如果您正苦于以下问题:PHP Pessoa::create方法的具体用法?PHP Pessoa::create怎么用?PHP Pessoa::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pessoa
的用法示例。
在下文中一共展示了Pessoa::create方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: store
/**
* Store a newly created resource in storage.
*
* @return Response
*/
public function store()
{
$input = Input::all();
$validation = Validator::make($input, Pessoa::$rules);
if ($validation->passes()) {
$this->pessoa->create($input);
return Redirect::route('pessoas.index');
}
return Redirect::route('pessoas.create')->withInput()->withErrors($validation)->with('message', 'There were validation errors.');
}
示例2: run
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
#Apaga e povoa a tabela de pessoas
DB::table('pessoas')->delete();
Pessoa::create(array('nome' => 'HARRY POTTER', 'cpf' => '829.381.029-38'));
Pessoa::create(array('nome' => 'JOAO JENUINO DA SILVA', 'cpf' => '429.011.029-12'));
Pessoa::create(array('nome' => 'ETEUVINA SERRAO DE PADUA', 'cpf' => '179.011.109-23'));
Pessoa::create(array('nome' => 'MARIETA SEVERO', 'cpf' => '179.301.169-23'));
Pessoa::create(array('nome' => 'ERNESTO CRUZONILDO', 'cpf' => '021.302.504-11'));
Pessoa::create(array('nome' => 'GEFFERSON LOPES', 'cpf' => '403.936.029-29'));
Pessoa::create(array('nome' => 'GILHERMINA DA SILVA', 'cpf' => '201.665.938-33'));
Pessoa::create(array('nome' => 'AMARAL DE SOUSA', 'cpf' => '333.291.012-22'));
Pessoa::create(array('nome' => 'MARIA DE JESUS', 'cpf' => '021.330.332-00'));
Pessoa::create(array('nome' => 'GEORGINA AMARAL', 'cpf' => '392.391.021-22'));
Pessoa::create(array('nome' => 'LOPES GILHERMINO', 'cpf' => '002.230.102-00'));
Pessoa::create(array('nome' => 'FRANCISCO DE SOUZA', 'cpf' => '192.021.932-02'));
Pessoa::create(array('nome' => 'CLARA DE MEDEIROS', 'cpf' => '382.102.023-13'));
}
示例3: ajaxSelection
public function ajaxSelection()
{
$this->data->labelField = Pessoa::create($this->data->selectionField)->getNome();
$this->render();
}