lang
1use Illuminate\Auth\UserInterface; 2use Illuminate\Auth\Reminders\RemindableInterface; 3 4 abstract class User extends Eloquent implements UserInterface, RemindableInterface { 5 6 7/** 8 * Get the unique identifier for the user. 9 * 10 * @return mixed 11 */ 12public function getAuthIdentifier() 13{ 14 return $this->getKey(); 15} 16 17/** 18 * Get the password for the user. 19 * 20 * @return string 21 */ 22public function getAuthPassword() 23{ 24 return $this->password; 25} 26 27/** 28 * Get the e-mail address where password reminders are sent. 29 * 30 * @return string 31 */ 32public function getReminderEmail() 33{ 34 return $this->email; 35} 36 37// Add your other methods here 38}
クラスを実装していないためと思うのですが、
どうしたらいいのかわかりません

バッドをするには、ログインかつ
こちらの条件を満たす必要があります。