Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App\Models\Eloquent;
- use Illuminate\Database\Eloquent\Model;
- class Click extends Model
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'click';
- public function user()
- {
- return $this->belongsTo('App\Models\Eloquent\User', 'user_id');
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement