1 回答

TA貢獻(xiàn)2003條經(jīng)驗(yàn) 獲得超2個(gè)贊
正如你所指出的,問(wèn)題似乎SocialFacebookAccount沒(méi)有被發(fā)現(xiàn)。雖然 Lumen 中沒(méi)有artisan make:model命令,但您可以手動(dòng)編寫模型。
app只需在名為 name 的文件夾中創(chuàng)建一個(gè)新文件SocialFacebookAccount.php,然后寫入其基本內(nèi)容:
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class SocialFacebookAccount extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
}
這基本上就是 artisan make model 命令的作用。有了這個(gè)基礎(chǔ),您就可以繼續(xù)按照問(wèn)題中鏈接的步驟進(jìn)行操作。
另外,請(qǐng)確保您已經(jīng)使用以下命令創(chuàng)建了關(guān)聯(lián)的遷移:php artisan make:migration create_social_facebook_accounts_table
- 1 回答
- 0 關(guān)注
- 112 瀏覽
添加回答
舉報(bào)