我嘗試使用User::create[]
方法創建新用戶時出現問題。Laravel ::創建方法
我讀Laravel create method這個問題,但它並不能幫助我:
下面是我的用戶模型:
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
protected $fillable = [
'name', 'email', 'password','phone','rating'
];
protected $hidden = [
'password', 'remember_token',
];
}
在這裏,我的控制器代碼:
public function create() {
$input = Request::all();
User::create[$input];
return $input;
}
PhpShtorm顯示我此通知:
不斷創建未找到...
我該如何解決這個問題,並創建新的用戶?
'用戶::創建($輸入);'創建不是數組它是一種方法。 –
http://i.imgur.com/b7cGcKo。png –
@HakanSONMEZ請在回答中加上你提到的,因爲它正確回答。 –