0
0
Files
Babyclass/vendor/overtrue/laravel-follow/tests/Other.php
2020-08-04 10:24:44 +08:00

27 lines
509 B
PHP

<?php
/*
* This file is part of the overtrue/laravel-follow
*
* (c) overtrue <i@overtrue.me>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Overtrue\LaravelFollow\Test;
use Illuminate\Database\Eloquent\Model;
use Overtrue\LaravelFollow\Traits\CanBeFollowed;
class Other extends Model
{
use CanBeFollowed;
protected $follow = User::class;
protected $table = 'others';
protected $fillable = ['name'];
}