1

私はlaravelについてもっと知るためにすべてを備えた新しいプロジェクトを作成しようとしています.今のところ、工場でモデル、移行、シードを作成していて、この問題に遭遇しています:

モデル ユーザー

<?php

namespace App\Models;

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Model implements Authenticatable
{

  protected $table = 'user'; //name of the table in database
  protected $primaryKey = 'Id'; //Primary Key of the table

  /**
   * Relations between tables
   */
   public function GetLoginInfo()
   {
     return $this->hasMany('App\Models\LoginInfo', 'UserId');
   }

   public function getStatus()
   {
     return $this->belongsTo('App\Models\AccountStatus');
   }

}

モデルアカウントのステータス

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class AccountStatus extends Model
{
  protected $table = 'account_status'; //name of the table in database
  protected $primaryKey = 'Id'; //primary Key of the table
  public $timestamps = false; //true if this table have timestaps
  /**
   * Relations between tables
   */
   public function GetUsers()
   {
     return $this->hasMany('App\Models\Users', 'StatusId');
   }
}

シード ファイル:

<?php

use Illuminate\Database\Seeder;

class UserSeeder extends Seeder
{
  /**
   * Run the database seeds.
   *
   * @return void
   */
  public function run()
  {
    factory(App\Models\User::class, 5)->create();
  }
}

工場ファイル:

<?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */

//Factory for Account Status table
$factory->define(App\Models\AccountStatus::class, function (Faker\Generator $faker) {
    return [
      'Description' => $faker->word,
    ];
});

//Factory for user table
$factory->define(App\Models\User::class, function (Faker\Generator $faker) {
    return [
      'Username' => $faker->unique()->userName,
      'Password' => bcrypt('test'),
      'Email' => $faker->unique()->safeEmail,
      'Name' => $faker->name,
      'StatusId' => Factory(App\Models\AccountStatus::class)->create()->id,
    ];
});

artisan で db シードを試行する場合:

  [Symfony\Component\Debug\Exception\FatalErrorException]
  Class 'App\Models\Model' not found

すでに composer dump-autoload 、optimize を試しており、App\Models のフォルダーにモデルがあります。

アカウントステータスのファクトリーのシードは機能しますが、両方(アカウントステータスとユーザー)で実行しようとするとエラーが発生します)誰もが理由を知っていますか?すべてのファクトリ コードを 1 つのファイルに含めることをお勧めしますか?

4

1 に答える 1

1

Userモデルでは、クラスを拡張していますが、クラスエイリアスModelを拡張する必要があります。Authenticatable

したがって、Userモデルは次のようになります。

class User extends Authenticatable
于 2016-11-27T18:33:11.533 に答える