dpicx06888 2014-02-05 17:16
浏览 28
已采纳

在laravel中向sentry2添加另一个表

Hi I would like to add another table to relate to the sentry users table. I can not seem to find any information on doing this.

I would like to have a table that stores user information and recent activity, lets call it user_activity and have the table be related by user_id.

How can I add this table so that it can be accessed using the sentry service provider?

  • 写回答

1条回答 默认 最新

  • doubo6658 2014-02-05 17:28
    关注

    You don't really need to think about Sentry in this case, Setry's tables are common tables like any other one, so you can just:

    php artisan migrate:make create_user_activity_table
    

    And create your table relating to users:

    <?php
    
    use Illuminate\Database\Migrations\Migration;
    
    class CreateUserActivityTable extends Migration {
    
        public function up()
        {
            Schema::create('user_activity', function($table) {
                $table->increments('id');
                $table->unsignedInteger('user_id');
                $table->string('<column_name>');
                $table->timestamps();
            });
    
            Schema::table('user_activity', function($table) {
                $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
            });
        }
    
        public function down()
        {
            Schema::drop('user_activity');
        }
    
    }
    

    EDIT

    To use and create your relations, it you can publish Sentry's config:

    php artisan config:publish cartalyst/sentry
    

    Edit app/config/packages/cartalyst/sentry/config.php and change

    'model' => 'Cartalyst\Sentry\Users\Eloquent\User',
    

    To your own model (which may be at app/models/User.php):

    'model' => 'User',
    

    But your model will have to now extend Sentry's original:

    class User extends Cartalyst\Sentry\Users\Eloquent\User {
    
        public function activities()
        {
            return $this->hasMany('UserActivity');
        }
    
    }
    

    And create a model for your new table:

    class UserActivity extends \Eloquent {
    
        protected $table = 'user_activity';
    
        public function user()
        {
            return $this->belongsTo('User');
        }
    
    }
    

    And now you can:

    $user = User::findById(1);
    
    foreach($user->activities as $activity)
    {
       echo $activity->description;
       echo $activity->user->name;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置