本文整理汇总了PHP中app\models\Group::getStatuses方法的典型用法代码示例。如果您正苦于以下问题:PHP Group::getStatuses方法的具体用法?PHP Group::getStatuses怎么用?PHP Group::getStatuses使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Group
的用法示例。
在下文中一共展示了Group::getStatuses方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: up
/**
* Run the migrations.
*/
public function up()
{
Schema::create('groups', function ($table) {
$table->increments('id');
$table->string('name');
$table->string('address1');
$table->string('address2');
$table->string('city');
$table->string('state');
$table->string('postal_code');
$table->string('phone_number');
$table->string('display_name');
$table->enum('status', Group::getStatuses());
$table->timestamps();
$table->softDeletes();
});
Schema::create('group_members', function ($table) {
$table->increments('id');
$table->integer('group_id')->unsigned();
$table->integer('user_id')->unsigned();
$table->enum('role', Group::getRoles());
$table->timestamps();
$table->softDeletes();
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
$table->foreign('group_id')->references('id')->on('groups')->onDelete('cascade');
});
}